summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was generated by cvs2svn to compensate for changes in r131702,mbr2004-07-06108-292/+638
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of AMD (am-utils) v6.0.10p1mbr2004-07-06133-364/+738
| |
* | Add some unneeded files to the Xlist in preparation for the newmbr2004-07-061-0/+4
| | | | | | | | amd import.
* | Push WARNS back up to 6, but define NO_WERROR; I want the warts out in thedes2004-07-062-2/+4
| | | | | | | | open where people can see them and hopefully fix them.
* | Introduce inline {ip,udp,tcp}_next() functions which take a pointer to andes2004-07-0624-104/+154
| | | | | | | | | | | | | | {ip,udp,tcp} header and return a void * pointing to the payload (i.e. the first byte past the end of the header and any required padding). Use them consistently throughout libalias to a) reduce code duplication, b) improve code legibility, c) get rid of a bunch of alignment warnings.
* | - trailing white-space cleanupgrehan2004-07-062-14/+20
| | | | | | | | | | - add call to thread_user_enter for P_SA processes before trap processing ala all other arches
* | use vfs_suser() to restrict access to the nfs mount's timeout.alfred2004-07-061-0/+3
| |
* | Use vfs_suser() where appropriate.alfred2004-07-061-11/+7
| |
* | Introduce vfs_suser(), used to test if a user should have special privsalfred2004-07-062-0/+17
| | | | | | | | for a mount.
* | NFS mobility Phase VI:alfred2004-07-061-1/+50
| | | | | | | | | | Export NFS mount state via sysctl. Export timeout via sysctl.
* | Rewrite twowords() to access its argument through a char pointer and notdes2004-07-062-6/+20
| | | | | | | | | | | | a short pointer. The previous implementation seems to be in a gray zone of the C standard, and GCC generates incorrect code for it at -O2 or higher on some platforms.
* | Document incorrect handling of multibyte characters.tjr2004-07-061-1/+3
| |
* | NFS mobility PHASE I, II & III (phase VI, and V pending):alfred2004-07-069-98/+271
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rebind the client socket when we experience a timeout. This fixes the case where our IP changes for some reason. Signal a VFS event when NFS transitions from up to down and vice versa. Add a placeholder vfs_sysctl where we will put status reporting shortly. Also: Make down NFS mounts return EIO instead of EINTR when there is a soft timeout or force unmount in progress.
* | Temporarily lower WARNS to 3 while I figure out the alignment issues ondes2004-07-062-2/+2
| | | | | | | | alpha.
* | Tiny markup fixes.ru2004-07-0611-60/+99
| |
* | Add an "iso8601" option keyword which causes 'cvs log' etc. to printdes2004-07-064-4/+11
| | | | | | | | | | | | | | dates in ISO 8601 format. Approved by: peter MFC after: 2 weeks
* | In the spirit of amd64/include/stdarg.h rev 1.6; add __va_copyobrien2004-07-061-0/+3
| | | | | | | | | | | | | | | | | | | | (but keep it conditional on __ISO_C_VISIBLE >= 1999. Why? Our out /usr/src/contrib assumes it, and more than a few ports have an autoconf that looks for __va_copy because it is available on glibc. It is critical that we use it on PowerPC. It generally isn't a problem for i386 and its ilk because those platforms can get away with cheating the C standard, using a plain assignment.
* | Use va_copy instead of __va_copy, which is not defined on most architectures.tjr2004-07-061-2/+4
| | | | | | | | Noticed by: obrien
* | Fixed markup.ru2004-07-061-15/+25
| |
* | mdoc(7) fixes.ru2004-07-061-15/+41
| |
* | mdoc(7) fixes.ru2004-07-064-32/+42
| |
* | Correct typos in the function name.ru2004-07-061-4/+4
| | | | | | | | mdoc(7) tweaks.
* | Fixed the .Os call (missing or wrong).ru2004-07-0655-11/+55
| |
* | mdoc(7) fixes.ru2004-07-0619-64/+103
| |
* | Catch up with the new world order of Netgraph metas.ru2004-07-061-15/+3
| | | | | | | | | | | | (This one was the last, according to grep(1).) Submitted by: Gleb Smirnoff
* | Temporarily disable preemption in SCHED_ULE due to reported panics andrwatson2004-07-061-0/+2
| | | | | | | | | | | | | | | | | | hangs due to recent preemption changes. This change appears to remove the panic that I was running into, but at the cost of increasing ithread scheduling latency, and as such is a temporary band-aid until jhb has a chance to resolve the ule<->preemption interaction that is the source of the problem. If it doesn't fix the problem for others-- sorry!
* | Use the proper type and then cast on assignment. This fixes warning whennjl2004-07-061-2/+4
| | | | | | | | building with -O2.
* | Add C99's nearbyint{,f}() functions as wrappers around rint().das2004-07-064-6/+94
| | | | | | | | | | | | | | These trivial implementations are about 25 times slower than rint{,f}() on x86 due to the FP environment save/restore. They should eventually be redone in terms of fegetround() and bit fiddling.
* | Use M_ZERO instead of bzero().bms2004-07-061-2/+1
| |
* | Be consistent and use bzero() instead of memset().bms2004-07-061-1/+1
| |
* | Use M_ZERO instead of memset() (!).bms2004-07-061-2/+1
| |
* | Use M_ZERO instead of bzero().bms2004-07-061-2/+1
| |
* | Add 32-bit framebuffer support. Tested on PearPC at lo-res, too painfulgrehan2004-07-062-29/+130
| | | | | | | | to watch at hi-res.
* | Replace a bzero() after malloc() with M_ZERO.bms2004-07-061-2/+1
| |
* | Style.bms2004-07-061-13/+15
| |
* | Eliminate unneeded return keywords.bms2004-07-061-34/+1
| |
* | Whitespace passbms2004-07-061-54/+54
| |
* | Style changes to pmap_extract().alc2004-07-062-10/+6
| |
* | Properly brucify a string by outdenting it.bms2004-07-061-2/+2
| |
* | Remove my email & dateache2004-07-061-3/+0
| |
* | Update to match recent importache2004-07-061-6/+4
| |
* | - Correct pmap_extract()'s return type. It should be vm_paddr_t, notalc2004-07-052-8/+4
| | | | | | | | | | vm_offset_t. - Convert pmap_extract() to the ANSI style of declaration.
* | Add implementations of ftw(3) and nftw(3) and the corresponding headerdas2004-07-054-3/+320
| | | | | | | | | | | | | | | | ftw.h. This is the implementation written by Joel Baker <fenton@debian.org> for inclusion in NetBSD, but with several bugfixes. Obtained from: Debian
* | Documentation for ftw(3) and nftw(3).das2004-07-051-0/+210
| | | | | | | | Obtained from: OpenBSD
* | Correct pmap_extract()'s return type. It should be vm_paddr_t, notalc2004-07-054-4/+4
| | | | | | | | vm_offset_t.
* | Whitespace nitbms2004-07-052-2/+2
| |
* | Eliminate redundant return keywords.bms2004-07-052-58/+0
| |
* | Whitespace pass.bms2004-07-052-80/+78
| |
* | style(9):bms2004-07-052-150/+150
| | | | | | | | | | - Space before bracketized non-void function returns. - Space before condition for conditional blocks.
* | Eliminate redundant return keywords.bms2004-07-052-96/+0
| |
OpenPOWER on IntegriCloud