summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Set ki_tdev to NODEV rather than NULL.peter2005-06-241-1/+1
| | | | Approved by: re
* MFi386: 1.258: Minor cleanupspeter2005-06-241-4/+4
| | | | Approved by: re (blanket i386<->amd64 sync)
* Move HWPMC_HOOKS into its own opt_hwpmc_hooks.h file. It doesn't meritpeter2005-06-249-2/+13
| | | | | | | being in opt_global.h and forcing a global recompile when only a few files reference it. Approved by: re
* Actually only protect mount-point if security.jail.enforce_statfs is set to 2.pjd2005-06-234-24/+0
| | | | | | | If we don't return statistics about requested file systems, system tools may not work correctly or at all. Approved by: re (scottl)
* Various and sundry style fixes and comment cleanups.jhb2005-06-232-14/+21
| | | | Approved by: re (scottl)
* Fix a typo in a comment.jhb2005-06-231-1/+1
| | | | Approved by: re (scottl)
* Adjust some comments to be a bit more correct.jhb2005-06-231-3/+3
| | | | Approved by: re (scottl)
* Fix a typo.jhb2005-06-231-1/+1
| | | | Approved by: re (scottl)
* Add Meinberg clocks to the default ntpd. It contains both a DCF77 and a GPSroberto2005-06-231-1/+1
| | | | | | | | receiver. PR: bin/78207 Submitted by: Joerg Pulz <Joerg.Pulz@frm2.tum.de> Approved by: re (scottl)
* Add back missing copyright and license statement. This is identicalimp2005-06-231-0/+35
| | | | | | | | | | | | | | | | to the statement in ip_mroute.h, as well as being the same as what OpenBSD has done with this file. It matches the copyright in NetBSD's 1.1 through 1.14 versions of the file as well, which they subsequently added back. It appears to have been lost in the 4.4-lite1 import for FreeBSD 2.0, but where and why I've not investigated further. OpenBSD had the same problem. NetBSD had a copyright notice until Multicast 3.5 was integrated verbatim back in 1995. This appears to be the version that made it into 4.4-lite1. Approved by: re (scottl) MFC after: 3 days
* Remove these files from src/contrib/ipfilter as they are already presentdarrenr2005-06-2316-8232/+0
| | | | | | | in src/sys/contrib/ipfilter/netinet. Makefile's reachover bits find what they need so building is unaffected. Approved by: re (dwhite)
* Fix some minor problems before release:darrenr2005-06-233-16/+59
| | | | | | | | (1) "ipf -T" is broken for fetching single entries and (2) loading rules with numbered collections does not order insertion right. (3) stats aren't accumulated for hash table memory failures Approved by: re (dwhite)
* Document supported Sun hardware.ru2005-06-232-2/+6
| | | | | Submitted by: marius Approved by: re (blanket)
* Remove the va == pa mapping.cognet2005-06-231-10/+7
| | | | Approved by: re (blanket)
* Call kdb_trap() on fatal abort.cognet2005-06-231-5/+5
| | | | Approved by: re (blanket)
* Implement db_frame() and use it to obtain the registers value.cognet2005-06-231-22/+45
| | | | Approved by: re (blanket)
* Don't abuse UMA_SLAB_KMEM.cognet2005-06-232-9/+4
| | | | Approved by: re (blanket)
* Fix a read mbuf-after-free error in the iwi driver that was provoked bysilby2005-06-231-9/+6
| | | | | | | the trash allocator being used on mbufs. Reviewed by: damien Approved by: re (scottl)
* Change the mbuf, mbuf cluster, and mbuf packet allocation routines so thatsilby2005-06-231-0/+34
| | | | | | | | | the UMA "trash" allocator is used - this ensures that any writes to a freed mbuf should provoke a panic. Only enabled under INVARIANTS, of course. Approved by: re (scottl)
* polled commands can read or write, so bus_dmamap_sync properlyps2005-06-231-2/+16
| | | | | | according to the type of request. Approved by: re
* Fix for a bug in tcp_sack_option() causing crashes.ps2005-06-231-2/+1
| | | | | Submitted by: Noritoshi Demizu, Mohan Srinivasan. Approved by: re (scottl blanket SACK)
* Fix off-by-one nanosecond bug in macro TIMESPEC_ADD.davidxu2005-06-221-1/+1
| | | | | | Reviewed by: deischen Approved by: re (dwhite) MFC after : 4 days
* Fix off-by-one nanosecond in macro TIMESPEC_ADD.davidxu2005-06-222-2/+2
| | | | | | Reviewed by: deischen Approved by: re (dwhite) MFC after : 4 days
* Tidy up the markup.ru2005-06-221-34/+49
| | | | | Approved by: re (blanket) OK'ed by: gad
* Document a lot of sparc64 internals.ru2005-06-2215-18/+1561
| | | | | | | | Submitted by: marius Reviewed by: ru Approved by: re (blanket) X-MFC: not before the code in RELENG_5 matches these man pages or vice versa
* Correct an error in the previous revision. RAND_MAX is the maximum valuejhb2005-06-221-3/+9
| | | | | | | | | | for rand(3), not random(3). random(3) is defined to return values between 0 and 2^31-1, so add a local RANDOM_MAX constant to this file that is defined as 2^31-1 and use that in place of RAND_MAX. Reviewed by: bde Approved by: re (dwhite) MFC after: 1 week
* Clear devinfo_generation in devinfo_free() since we are freeing all of thejhb2005-06-221-0/+1
| | | | | | | | | | | | | cached state. Otherwise, a subsequent call to devinfo_init() would succeed without reading the device tree from the kernel thinking that the cached state was up to date since the generation count was the same. However, since the cached state was actually free'd, attempts to examine the tree after the second devinfo_init() would fail. Reported by: Juho Vuori juho dot vuori at kepa dot fi Submitted by: Stefan Farfeleder stefan at fafoe dot narf dot at Approved by: re (dwhite) MFC after: 1 week
* Line up the markup.ru2005-06-225-137/+200
| | | | Approved by: re (blanket)
* Fix last commit.ru2005-06-221-2/+3
| | | | Approved by: re (blanket)
* Struct ifatm isn't at the beginning of the softc anymore. Use theharti2005-06-221-2/+2
| | | | | | correct way (IFP2IFATM()) to access it. Approved by: re
* Free the struct ifnet when detaching is complete. Also add BPF stuff.harti2005-06-221-0/+23
| | | | Approved by: re
* Fix the debugging macro. The struct ifnet isn't embedded in softcharti2005-06-221-1/+1
| | | | | | | anymore - instead we have a pointer in the softc to it. Use that instead to call if_printf(). Approved by: re
* Upgrade these regression tests to track recent changes to `env'.gad2005-06-211-3/+78
| | | | Approved by: re (blanket `env')
* Fix a bug where the value of ${SOMEVAR} would simply disappear if theregad2005-06-211-23/+48
| | | | | | | | was a separator character immediately before it. This wasn't likely to happen in #-lines, but we might as well get it right. Also fix it so that "" and "" will create a zero-length argument. Approved by: re (blanket `env')
* Add missing unlock.pjd2005-06-211-1/+3
| | | | | Pointy hat to: pjd Approved by: re (dwhite)
* Add the functions _Qp_cmp() and _Qp_cmpe() as described in the Sparcstefanf2005-06-211-8/+11
| | | | | | | | Compliance Definition. On sparc64, GCC emits _Qp_cmp() calls for its __builtin_isfoo() functions which are used for C99's isfoo() macros. Approved by: re(dwhite) PR: 73782
* Put in a more descriptive heading for the `env' command.gad2005-06-211-1/+1
| | | | | Noticed by: Matthew D Fuller Approved by: re (blanket `env')
* Undo r1.14 to env.c. While it is unusual for environment variables togad2005-06-212-7/+2
| | | | | | | | start with a '/', they are more supported (by POSIX and SUSv3) than filenames which have an '=' in them. Noticed by: tjr Approved by: re (blanket `env')
* Build mount_reiserfs on every platforms, not only i386 and pc98.dumbbell2005-06-211-2/+1
| | | | | Reviewed by: mux (mentor) Approved by: re (dougb)
* Buid reiserifs.ko on every platforms, not only i386 and pc98.dumbbell2005-06-211-2/+1
| | | | | Reviewed by: mux (mentor) Approved by: re (dougb)
* Connect reiserfs build to every platforms, not only i386 and pc98.dumbbell2005-06-211-6/+0
| | | | | Reviewed by: mux (mentor) Approved by: re (dougb)
* Connect reiserfs build to every platforms, not only i386 and pc98.dumbbell2005-06-217-27/+16
| | | | | Reviewed by: mux (mentor) Approved by: re (dougb)
* Replace the use if ext2fs' bitops by bitstring.h macros. This fixesdumbbell2005-06-212-29/+16
| | | | | | | | portability issues. Also note that for amd64, a hack is used to work around gcc optimization (thanks to cognet@). Reviewed by: mux (mentor) Approved by: re (dougb)
* Unbreak the ipfilter_loaded function. There doesn't seem to be a waydd2005-06-211-1/+1
| | | | | | | | | | for kldstat to ever print "IP Filter" (the module is called "ipfilter" and modules don't have anything like a description), so this function would always return false. That would cause prestart to attempt to load the module even if it's already loaded, which would fail and prevent the rules from being loaded. Approved by: re (dwhite)
* Fix a -Wuninitialized warning reported by rwatson.jkoshy2005-06-211-1/+2
| | | | Approved by: re (blanket hwpmc)
* fix IP(v4) over IPv6 tunneling most likely broken with ifnet changes.ume2005-06-201-1/+8
| | | | | Submitted by: bz Approved by: re (dwhite)
* Don't bump bounds every time savecore(8) is run.dwhite2005-06-201-9/+12
| | | | | Submitted by: Ed Maste <emaste@sandvine.com> Approved by: re
* Simplify the storming logic and remove a variable as a result.jhb2005-06-201-8/+3
| | | | Approved by: re (dwhite)
* Add .cvsignore files just like in sys/<arch>/compiled, this keeps CVS fromobrien2005-06-208-0/+8
| | | | | | questing kernel config files not in CVS. Approved by: re(kensmith)
* Fix IP(v6) over IP tunneling most likely broken with ifnet changes.bz2005-06-201-1/+8
| | | | | Reviewed by: gnn Approved by: re (dwhite), rwatson (mentor)
OpenPOWER on IntegriCloud