summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* int/long printf format problems on the Alpha.peter1999-07-011-4/+4
|
* Fix some int/long printf problems for the Alphapeter1999-07-015-20/+23
|
* Quiet warnings on an Alpha. CBSIZE has long type and causes the otherpeter1999-07-012-6/+10
| | | | ints to promote to long.
* Quiet warnings on Alpha. (db_expr_t is a long on alpha, int on x86)peter1999-07-017-27/+26
|
* Remove the now-bogus comment about using iosiz with npx0 for memoryjkh1999-07-013-36/+6
| | | | sizing - environment does this properly now. Thanks, Peter!
* Look up the kernel environment for MAXMEM as a final override for thepeter1999-07-012-6/+18
| | | | | | memory size. If somebody wants to change the name, fine - I used this since it's consistant with the config variable it replaces. This is intended to replace the npx0 msize hack (which no longer works).
* Move kern_envp and preload initialization a little earlier so that wepeter1999-07-012-18/+16
| | | | | can do a getenv_int() inside the memory sizing routines to override the memory limit.
* Fix ambigious else.billf1999-07-011-2/+3
| | | | Reviewed By: eivind
* Don't include trailing whitespace in ID tokens before comments. ie:peter1999-07-011-1/+2
| | | | | | | | options FOO=10 # comment would give FOO the value of "10 " and that caused unwanted touches on the opt_*.h files. I hope I've got this right..
* Detect and remove defunct or unknown options from opt_*.h files. Thispeter1999-07-011-11/+23
| | | | can happen when options are removed from the options files.
* Fix two easy warnings when using BRIDGE without IPFIREWALL.peter1999-07-011-2/+3
|
* Fix some warnings, unused functions etc.peter1999-07-011-9/+17
|
* Document that FTP_PASSIVE_MODE should be explicitlyru1999-07-011-2/+4
| | | | | | | | | set to `YES' for passive mode to be used by default. Just setting FTP_PASSIVE_MODE is not sufficient, as it was before. Noted by: eivind Reviewed by: des
* Turn System V command line syntax ``on'' by default.ru1999-07-012-12/+4
| | | | | Requested by: peter Reviewed by: des, billf
* Fix warning. va_fsid is udev_t, which is int32_t. No need to use %lx.peter1999-07-012-4/+4
|
* Spelll 'asynchronous' coriectlykris1999-07-011-2/+2
|
* Slight reorganization of kernel thread/process creation. Instead of usingpeter1999-07-0117-207/+225
| | | | | | | | | | | | | | | SYSINIT_KT() etc (which is a static, compile-time procedure), use a NetBSD-style kthread_create() interface. kproc_start is still available as a SYSINIT() hook. This allowed simplification of chunks of the sysinit code in the process. This kthread_create() is our old kproc_start internals, with the SYSINIT_KT fork hooks grafted in and tweaked to work the same as the NetBSD one. One thing I'd like to do shortly is get rid of nfsiod as a user initiated process. It makes sense for the nfs client code to create them on the fly as needed up to a user settable limit. This means that nfsiod doesn't need to be in /sbin and is always "available". This is a fair bit easier to do outside of the SYSINIT_KT() framework.
* Fix the NAME section of the kldload.2 manpage, which made reference tosheldonh1999-07-016-8/+52
| | | | | | | kldunload. Add proper cross-references to the whole family. PR: 12472 Submitted by: Chris Costello <chris@calldei.com>
* Sigh. It's always the smallest changes that generate the largest publicjkh1999-07-011-3/+3
| | | | | | | commentary. :) 3rd and final frob of this. Leave enough comments behind that anyone running into trouble at least has some cited clues on dealing with it and jump into the brave new world with uncommented IANA port assignments.
* (1) Don't perror() when at.deny doesn't exist, that's an accepted behavior.billf1999-07-011-3/+6
| | | | | | | | (2) Die when there is a problem opening at.allow other then it not existing. An error other then it not existing might be a trick to somehow circumvent system security. Mostly Reviewed By: msmith
* Compromise proposal: Comment out both old and new radius ports, explainjkh1999-07-011-3/+10
| | | | | | | the differences in the comments, let the USER select which assignment to use now. Suggested by: rgrimes
* Ommitted in previous commit message:sheldonh1999-06-302-2/+2
| | | | Submitted by: David Malone <dwmalone@maths.tcd.ie>
* Enable wrapping for dgram services and fix logging so that -l reallysheldonh1999-06-302-33/+51
| | | | does log all connections.
* Increase the size of the route reference count from 15 bits to 31 bits.msmith1999-06-301-3/+2
| | | | | | | | This doesn't change the size or alignment of the structure on either i386 or Alpha, and thus should be binary-compatible (modulo problems with old applications and routes with more than 2^15 references). Reviewed by: peter
* Allow the use of `-' as an argument to the -w option so that standardsheldonh1999-06-302-7/+18
| | | | | | | input may be used (e.g. gunzip -c /var/log/wtmp.Jan.gz | ac -w - ). PR: 12467 Submitted by: wollman
* Slight tweak to fork1() calling conventions. Add a third argument sopeter1999-06-305-54/+65
| | | | | | | | the caller can easily find the child proc struct. fork(), rfork() etc syscalls set p->p_retval[] themselves. Simplify the SYSINIT_KT() code and other kernel thread creators to not need to use pfind() to find the child based on the pid. While here, partly tidy up some of the fork1() code for RF_SIGSHARE etc.
* Sync with sys/i386/i386/userconfig.c revision 1.147.kato1999-06-301-4/+3
|
* Sync with sys/i386/i386/machdep.c revision 1.345.kato1999-06-302-6/+6
|
* retreived -> retrievedkris1999-06-301-3/+3
| | | | Obtained from: OpenBSD
* Grammar and spelling fixeskris1999-06-301-5/+5
| | | | Obtained from: OpenBSD
* Flesh out VOP_ADVLOCK.9 with a description of the available flagskris1999-06-302-51/+84
| | | | | | Sync vnode.9 with the definitions in <sys/vnode.h> Reviewed by: Doug Rabson
* Correct reference to the obsolete vadvise() to madvise() (with appropriatekris1999-06-301-5/+5
| | | | | | | | arguments) PR: 11586 Submitted by: David Gilbert <dgilbert@velocet.ca> Reviewed by: Doug Rabson
* Put radius on its proper ports.jkh1999-06-301-3/+3
|
* Changed pcicmem and cardirq variables to non-dirty variables.hosokawa1999-06-302-20/+20
|
* Submitted by: "David E. Cross" <crossd@cs.rpi.edu>julian1999-06-302-2/+4
| | | | Matt missed a line..
* pccard_beep parameter is not supported by rc.conf and rc.pccard of -current.hosokawa1999-06-301-3/+1
| | | | (I'll port it later...)
* Added -z and -i option.hosokawa1999-06-301-1/+8
|
* An SMP-specific change: Remove unnecessary lock acquires and releasesalc1999-06-301-27/+12
| | | | | | | | surrounding critical sections that consist of (1) a single read or (2) a single locked RMW operation. (Thanks to thomma@slip.net (Tamiji Homma) for helping to test these changes.)
* Submitted by: Conrad Minshall <conrad@apple.com>julian1999-06-302-2/+12
| | | | | | | | | | Reviewed by: Matthew Dillon <dillon@apollo.backplane.com> The following ugly hack to the exit path of nfs_readlinkrpc() circumvents an Auspex bug: for symlinks longer than 112 (0x70) they return a 1024 byte xdr string - the correct data with many nulls appended. Without this fix namei returns ENAMETOOLONG, at least it does on our source base and on FreeBSD 3.0. Note we do not (and should not) rely upon their null padding.
* FreeBSD does supports LKM now.hosokawa1999-06-291-9/+1
| | | | | | PR: doc/10331 Reviewed by: mpp@freebsd.org Submitted by: Andreas Gustafsson <gson@araneus.fi>
* Removed unused boot_crunch.confhosokawa1999-06-295-0/+0
|
* sscape_mss is supposed to work..peter1999-06-292-2/+4
|
* Drop old-scsi drivers (was commented out) od0 and (not commented) sctarg0peter1999-06-293-9/+3
|
* Fix typo (wrong path)peter1999-06-291-1/+1
|
* Reconcile all the loader newvers.sh's into one common one.peter1999-06-297-106/+15
|
* Don't use head/tail - they don't exist in a 'make world' environment.peter1999-06-292-2/+4
| | | | (Why do we have three copies of this script anyway?)
* Defer signals, so we will not wait for SIGCHLD after it was delivered.dt1999-06-293-0/+15
|
* Correct spelling of NMBCLUSTERS in a comment.mph1999-06-293-6/+6
| | | | Submitted by: Peter Radcliffe <pir@pir.net>
* With asbestos suit on, make the options indenting a little more consistantpeter1999-06-293-867/+867
| | | | | so that it doesn't screw up the alignment when commenting out an entry. Also dequote two entries that do not need it.
* Put on my asbestos suit and attempt to tidy up and add some simple docspeter1999-06-292-236/+216
| | | | | or notes to make it much more obvious what things are for people who have not committed LINT to memory yet.
OpenPOWER on IntegriCloud