summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Minor mdoc(7) cleanup, based on the PR below.simon2003-07-261-2/+4
| | | | | | | PR: docs/54826 Submitted by: Lukas Ertl <l.ertl@univie.ac.at> Reviewed by: ru Approved by: ceri (mentor)
* Fix "write from stdin".pb2003-07-261-3/+6
| | | | | Reviewed by: sos MFC after: 1 week
* Fixed wrong function names in the error message that was translated tobde2003-07-261-3/+3
| | | | | C in rev.1.32 so that it doesn't take 2 commits for all branches to fix this message.
* Remove prototype of ia64_pa_access(). The function has been moved tomarcel2003-07-261-1/+0
| | | | mem.c where it's been made static.
* Enable wake up GPE before shutdown, not only for sleeping.takawata2003-07-261-0/+1
|
* Avoid using __aligned(16). Instead define the jmp_buf in terms ofmarcel2003-07-261-9/+11
| | | | | long doubles. This gives us 16-byte alignment. Add a CTASSERT for the size of the jmp_buf to detect ABI breakages.
* Add a "int fd" argument to VOP_OPEN() which in the future willphk2003-07-2628-42/+43
| | | | | | | | | contain the filedescriptor number on opens from userland. The index is used rather than a "struct file *" since it conveys a bit more information, which may be useful to in particular fdescfs and /dev/fd/* For now pass -1 all over the place.
* Unbreak ia64 builds now -Werror is enabled again. Avoid obsoletemarcel2003-07-261-6/+6
| | | | memory operand construct.
* Guard against MLEN growing larger than a uint8_t due to MSIZE grwoing to ascottl2003-07-263-0/+6
| | | | value of 512 in LINT. This keeps gcc from complaining.
* Bah, I go and get all preachy, and then commit from the wrong branch. Revertscottl2003-07-261-2/+2
| | | | | | the use of '-j8'. Apologies to: ru
* Fix the release build with a forgotten '-f'.scottl2003-07-261-3/+3
|
* Fixes for 64 bit cleanliness. The length arg to sysctl is a pointer topeter2003-07-261-1/+2
| | | | | | size_t not int. Reviewed by: bp
* Use #include <string.h> rather than <strings.h> so that the strdup()peter2003-07-261-1/+2
| | | | | | | prototype gets brought into scope. This is a big deal for 64 bit systems where the default return value of 'int' is != pointer. Reviewed by: bp
* Gulp ... call kmem_malloc() without Giant.alc2003-07-261-7/+1
|
* Fix some recently introduced warnings. 'Declaration does not declarepeter2003-07-261-2/+2
| | | | anything' etc.
* Turn -Werror back on again. I've tested with/withoutpeter2003-07-261-1/+1
| | | | | | invariants/witness/etc on i386, sparc64, amd64 and alpha for GENERIC. Lint probably still needs fixing, as do a couple of other drivers that have broken recently and not been noticed.
* Fix typo.davidxu2003-07-262-10/+10
|
* Change the inline limit switch to something that exists in gcc-3.2.peter2003-07-262-4/+4
| | | | Unfortunately, it has different units.
* Revise and improve ntfs_subr.c 1.30: read only a single cluster at a timetjr2003-07-262-17/+28
| | | | | | | | | | in ntfs_writentvattr_plain and ntfs_readntvattr_plain, and purge the boot block from the buffer cache if isn't exactly one cluster long. These two changes work around the same buffer cache bug that ntfs_subr.c 1.30 tried to, but in a different way. This may decrease throughput by reading smaller amounts of data from the disk at a time, but may increase it by avoiding bogus writes of clean buffers. Problem (re)reported by Karel J. Bosschaart on -current.
* Revert previous commit. We don't use setjmp()/longjmp() for contextmarcel2003-07-252-6/+3
| | | | | | switching anymore, so there's no need to save and restore GP. This change breaks threaded applications linked against libc_r. Pull the tier 2 card again: relink. This will link against libthr instead.
* revision 1.51 of vm/uma_core.c modified uma_large_malloc() to acquirealc2003-07-251-6/+0
| | | | Giant when needed.
* powerpc isn't tinderbox-ready yet.des2003-07-252-2/+2
|
* Use __FBSDID().obrien2003-07-2539-78/+127
| | | | Brought to you by: a boring talk at Ottawa Linux Symposium
* Use __FBSDID().obrien2003-07-253-6/+10
| | | | Brought to you by: a boring talk at OLS
* Add support for the M_ZERO flag to contigmalloc().mux2003-07-251-1/+5
| | | | Reviewed by: jeff
* Make this 64 bit clean. Use size_t for sysctl() length pointer args.peter2003-07-251-1/+2
|
* Remove alpha vtophys() hack from if_bgereg.h and clean up unneededwpaul2003-07-252-7/+0
| | | | | #includes formerly required to pull in vtophys support, since we don't need them anymore.
* Convert bge(4) to use busdma. I have not tested this on anythingwpaul2003-07-252-127/+856
| | | | | besides x86 yet since I don't have access to a non-x86 FreeBSD box at the moment. Volunteers welcome.
* Fix for 64 bit platforms. sysctl's length args are pointers topeter2003-07-252-3/+6
| | | | | | size_t, not int. This could be fatal where size_t is long. Reviewed by: bp
* MFi386 revision 1.416alc2003-07-253-21/+30
| | | | | | Add vm object locking to pmap_prefault(). Note: powerpc and sparc64 do not implement this function.
* Discussions on src-committers with alfred and bde pointed out thatgad2003-07-251-6/+8
| | | | | | | | | | | | | the "do-nothing" versions of __RCSID(), __RCSID_SOURCE(), __SCCSID(), and __COPYRIGHT() were not strictly correct. They should not expand into [nothing], because the ';' which follows them would then cause a syntax error (in a strict C compiler, if not gcc...). So, change the do-nothing versions of those macros to use the 'struct __hack' tactic, as was already used with __FBSDID(). Approved by: discussions with bde MFC after: 1 week
* Fix amd64 build by deleting trailing whitespace. Doh!peter2003-07-251-1/+1
|
* State that in -exec ... ; the semicolon should be quoted if invoked fromschweikh2003-07-251-0/+4
| | | | | | | | a shell. PR: docs/54667 Submitted by: Patrick Alken <pa59@cornell.edu> MFC after: 3 days
* Fix output from an error message.njl2003-07-251-5/+5
| | | | | | Use sysctl -n instead of sed Submitted by: Scott Lambert <lambert@lambertfam.org>
* Add wrapper for kqueue() to keep track of the allocated fd and allow it tomp2003-07-252-0/+54
| | | | | | | be closed. This fixes a file descriptor leak when closing a kqueue() fd. Reviewed by: deischen MFC after: 1 week
* Add an informational debugging printf of the maximum time spent innjl2003-07-251-0/+10
| | | | | EcEventWait(). If you get AE_HARDWARE_NO_RESPONSE errors, please enable this info by setting hw.acpi.verbose=1 in loader.conf.
* Backed out the micro-optimization in 1.4. It was to help gcc-2.6.3bde2003-07-251-6/+1
| | | | | | | | | on i486's (and probably i386's), but it has had very little effect since gcc-2.7 or gcc-2.95. With gcc-3.3, it gave a small pessimization for at least i386's, athlon-xp's and pentium4's, a small optimization (I think) for pentium1's, and made no difference for i386's. (movzbl is best for all the later processors, and the micro-optimization was to stop it being used on i486's.)
* New release notes: bge(4) 5705 support.hrs2003-07-252-2/+12
| | | | | | Update release notes: rescue(7) man page. MFC: safe(4).
* Make the PC98 small boot floppy usable again.ru2003-07-251-0/+4
| | | | | Spotted by: nyan Reviewed by: nyan
* When deciding whether to download the microcode or not look at the API ratherharti2003-07-251-1/+1
| | | | | | | | than at the vendor. We have three different Fore cards and only the PCA200 need the microcode. Look also at the RAM address and load the code only if it is not zero. A zero RAM address means either a bug in the driver or this is a interface created by harp(4) in which case fatm(4) handles the microcode issue.
* Print the offending SPANS message only if printing is enabled.harti2003-07-251-1/+2
|
* An u_int8_t can never be bigger than 255, so remove a useless check.mux2003-07-251-2/+0
| | | | Spotted by: GCC
* Remove a duplicate entry.mux2003-07-251-4/+0
|
* o Do not overwrite saved interrupt priority level by alloc_hash(),maxim2003-07-251-6/+8
| | | | | | | | use a separate variable. o Restore interrupt priority level before return (no-op in HEAD). Spotted by: Don Bowman <don@sandvine.com> MFC after: 5 days
* The RELEASE9 knob is now OBE.ru2003-07-251-7/+1
| | | | OK'ed by: jhb
* Moved the boot floppy generation code out from release.9 to release.10.ru2003-07-252-53/+36
| | | | | | | | | | | | | | The release.9 target is now responsible only for generation of MFS root file systems, that are built for all architectures, even those that do not provide a floppy installation option. The release.10 target is now responsible for creation of a set of boot, MFS root, and fixit floppies, and the NO_FLOPPIES variable now affects only this target. Also, replaced the FIXIT_TARGET variable with a check of whether the *FIXITSIZE variables are present for a given architecture, similar to how this is done when generating boot floppies. Discussed with: jhb
* Add support for VBR and CBR PVCs for IP over ATM.harti2003-07-255-6/+205
| | | | | Submitted by: Vincent Jardin <vjardin@wanadoo.fr> MFC after: 2 weeks
* Make library WARNS=6 clean. The problems have been: alignment on sparc64harti2003-07-254-7/+8
| | | | and one of the usual sizeof(in_addr_t) == sizeof(u_long) bugs.
* Due to a gcc bug, it doesn't like local variables with names like 'sin'.harti2003-07-251-3/+3
| | | | Rename this for the moment. Also fix a sparc64 alignment warning.
* Make ilmid WARNS=6 clean. The problem were a couple of unused functionharti2003-07-252-14/+14
| | | | arguments and missing consts.
OpenPOWER on IntegriCloud