summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix conflicts.des2002-03-1851-6317/+6809
|
* mdoc(7) police: tidy up.ru2002-03-181-135/+166
|
* This commit was generated by cvs2svn to compensate for changes in r92555,des2002-03-18115-3132/+5680
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of OpenSSH 3.1des2002-03-18165-9014/+12507
| |
* | Fix a bug that prevents "00" being used as a valid year. Why bother incjc2002-03-181-1/+1
| | | | | | | | | | | | | | | | 2002? It is a bug. Might as well close the PR. PR: misc/14511 Submitted by: Mike Pritchard <mpp@mpp.pro-ns.net> MFC after: 3 days
* | lint the previous lint commit.ru2002-03-183-16/+14
| | | | | | | | Reviewed by: markm
* | Fix spelling.dfr2002-03-181-1/+1
| |
* | Eliminate grow_stack() from (o)sendsig(). If the stack needs to grow,alc2002-03-182-20/+8
| | | | | | | | | | | | | | copyout() will page fault and perform grow_stack() from trap_pfault(). These calls to grow_stack() accomplish nothing. Reviewed by: bde
* | - Lock down the ``module'' structure by adding an SX lock that is used byarr2002-03-184-26/+80
| | | | | | | | | | | | | | | | | | all the global bits of ``module'' data. This commit adds a few generic macros, MOD_SLOCK, MOD_XLOCK, etc., that are meant to be used as ways of accessing the SX lock. It is also the first step in helping to lock down the kernel linker and module systems. Reviewed by: jhb, jake, smp@
* | __MAKE_CONF?=/etc/make.confimp2002-03-181-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Use this where we are now using /etc/make.conf. This allows people to override the current default of always including /etc/make.conf. Setting __MAKE_CONF to /dev/null disables it completely, while setting it to something else allows one to override what is on the system. This can be desirable in situations where a machine has many users and some of them want different defaults, or defaults appropriate to cross building to be different than those for normal building. Not objected to by: arch@
* | o remove __Pimp2002-03-181-9/+7
| | | | | | | | | | | | | | o Use ansi function definitions o MAXPATHLEN already has the NUL at the end, so no need to add 1 (note that MAXNAMLEN doesn't, so the + 1 there is correct). o remove register.
* | Add xref to fdisk and disklabel to aid people looking around on how toimp2002-03-181-1/+3
| | | | | | | | | | | | partition disks. Suggested by: Dworkin Muller
* | o MAXPATHLEN is the correct constant to use for path names, it includesimp2002-03-182-19/+13
| | | | | | | | | | | | the NULL. o use snprintf in preference to unchecked strcat in a couple of places that likely can't overflow. Makes it easier to grep for strcpy :-)
* | o __Pimp2002-03-181-4/+4
| | | | | | | | | | | | o Strict ANSI declarations. o return (foo); o main (int, char *[])
* | o remove __Pimp2002-03-182-144/+96
| | | | | | | | | | | | o Use ANSI function definitions o const poison o remove register
* | Cannot release vnode underlying the nullfs vnode in null_inactivemckusick2002-03-181-19/+26
| | | | | | | | | | | | | | | | | | | | as it leaves the nullfs vnode allocated, but with no identity. The effect is that a null mount can slowly accumulate all the vnodes in the system, reclaiming them only when it is unmounted. Thus the null_inactive state instead accelerates the release of the null vnode by calling vrecycle which will in turn call the null_reclaim operator. The null_reclaim routine then does the freeing actions previosuly (incorrectly) done in null_inactive.
* | o __P removal.imp2002-03-181-41/+24
| | | | | | | | | | o Use ANSI function definitions. o main(int, char *[])
* | o Use real prototypes and ANSI function definitions.imp2002-03-181-12/+5
| | | | | | | | o Remove __P.
* | o Use real prototypesimp2002-03-181-8/+6
| | | | | | | | | | o Remove __P. o main(int, char *[])
* | Note comment about DP-1imp2002-03-181-0/+3
| |
* | Home Wireless Network Airway wireless cardimp2002-03-181-0/+6
| |
* | Fixed some style bugs (mainly ones not fixed or made worse by rev.1.44).bde2002-03-181-8/+9
| | | | | | | | | | Don't use ISO string concatentation to obfuscate long single-line messages...
* | Fixed some style bugs (mainly ones not fixed or made worse by rev.1.41).bde2002-03-181-12/+16
| | | | | | | | | | | | Old code obfuscates long (but single-line) messages by printing them in pieces using %s. Rev.1.41 obfuscated some new long messages using ISO string concatenation. This commit only fixes the new obfuscations.
* | mdoc(7) police: bump document date to the date of the last interfacedd2002-03-181-3/+6
| | | | | | | | | | change (revision 1.2 of devname.c on 1999/07/18), don't put quotes around a path, and use .Dv where appropriate.
* | Update to reflect reality; devname(3) hasn't returned NULL on failuredd2002-03-181-6/+18
| | | | | | | | | | since revision 1.2 of devname.c (1999/07/18). While I'm here, note, in the BUGS section, that the returned pointer is to a static buffer.
* | Removed vestiges of mount_mfs. Sorted the Makefile a bit.bde2002-03-182-15/+3
| |
* | It was possible for an unprivileged user to tie up the passwordcjc2002-03-183-25/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | information (no one else can vipw(8), chpass(1), or even passwd(1)), either on purpose or by accident, until an administrator manually intervened. Instead, do not lock the master.passwd file while a user is editing his information. But once we go to write the new information, check that the modified user's information has not changed in the password database since we started. Abort the changes if it has. Add a $FreeBSD$ to pw_copy.h. PR: i386/35816 Obtained from: NetBSD MFC after: 1 week
* | Fixed 2 layers of breakage of WARNS. Setting WARNS unconditionally tobde2002-03-181-1/+1
| | | | | | | | 0 was bad and setting it unconditionally to 2 was worse.
* | Updated release notes: Perl 5.6.1, one-true-awk 2002-02-10.bmah2002-03-182-4/+4
| |
* | Updated release notes: ACPI 20020308, OpenPAM Centaury.bmah2002-03-182-4/+4
| |
* | Features are deprecated, not depreciated.dd2002-03-181-1/+1
| | | | | | | | | | PR: 35987 Submitted by: shill@free.fr
* | Make sure that rc.syctl gets its own version of positional parametersdougb2002-03-181-2/+2
| | | | | | | | Submitted by: cjc
* | Add hooks for very basic IPFilter support in bridging. Set,cjc2002-03-181-5/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | # sysctl net.link.ether.bdg_ipf=1 To enable. Just like ipfw(8) bridging, only input packets are filtered in the bridge. Filtering works just like in the IP layer, ipf(8) first, then ipfw(8). And just like in the IP layer, both are independent, one need not be run to use the other. (Note: This will not work in, but doesn't break, the bridge.ko module. The ipl.ko module would need to be fixed before that is worth worrying about.) Reviewed by: luigi
* | Changes and fixes in preparation for UMA:benno2002-03-173-36/+87
| | | | | | | | | | | | - Bootstrap pvo entries are now allocated by stealing pages. - Just return if we're pmap_enter'ing a mapping that's already there. Don't remove it and re-enter it.
* | Lowercase all of the trap names.benno2002-03-172-96/+96
| |
* | Clean up and fix up copyin and copyout.benno2002-03-172-28/+40
| |
* | s/options\t\t/options \t/des2002-03-172-2/+2
| |
* | Spelling: s/guesst/guessed/cjc2002-03-172-2/+2
| |
* | Distinguish between first and last passes of rc.sysctl, and only setdougb2002-03-173-5/+36
| | | | | | | | mibs whose values are not already what is specified in sysctl.conf.
* | Some necesary fixups to cope with new location and FreeBSD CVS keyword.phk2002-03-174-2/+21
| |
* | Need a different #include for the userland regression test.phk2002-03-171-1/+1
| |
* | Make this compile in the userland-regression testsuite again.phk2002-03-171-13/+3
| |
* | Add the GEOM regression test framework.phk2002-03-1769-0/+9091
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a set of userland shims in which GEOM can be run through simple tests. The simulation of kernel synchronization primitives is very primitive and consequently some times tests will fail because of races. Data/ contains a number of files in XML format which describe the key sectors for a number of disk images This is a very handy tool for people developing GEOM methods. The "simdisk" method can be told to read from a "real disk" and afterwards dump the accessed sectors in XML format for further use. I hope future method writes will see the benefit of this test collection and add to it when they write methods for GEOM. You will need ports/textproc/expat for the XML parser. Sponsored by: DARPA, NAI Labs.
* | Remove vm_object_count: It's unused, incorrectly maintained and duplicatesalc2002-03-171-4/+1
| | | | | | | | information maintained by the zone allocator.
* | Translate SA-02:13 entry.kuriyama2002-03-171-9/+9
| |
* | MFen: release.prev.stableue2002-03-172-6/+10
| |
* | MFen.kuriyama2002-03-171-4/+26
| |
* | Add one more dependency, graphics/jbigkit.jhay2002-03-171-0/+1
| |
* | mdoc(7) police: tidy up.ru2002-03-171-41/+52
| |
* | Spell analogous properly.murray2002-03-171-2/+2
| | | | | | | | Found by: ispell(1)
OpenPOWER on IntegriCloud