summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Dequote like on the i386 configs. Also remove some references to oldpeter1999-06-292-44/+38
| | | | | | i386 isa drivers that used to be order sensitive. The probe order of those drivers is now determined by a list in isa_compat.c and config file order is totally irrelevant.
* idev->id_irq is an interrupt MASK, not an interrupt number.yokota1999-06-291-4/+3
| | | | | Thus, we need to convert the mask to the number (by ffs()) when writing back this value to the resource in save_resource().
* Keyboard allocation/deallocation fix.yokota1999-06-292-33/+69
| | | | | | | | - Do not try to allocate a keyboard in pccnprobe() when probing the vt driver for the kernel console. Rather, allocate a keyboard when initializing the vt driver in pccninit(). - Release the keyboard in pccnterm(). - Don't try to read from the keyboard, if it is not present.
* Allocate the port resource when attaching the keyboard controller,yokota1999-06-293-21/+30
| | | | rather than when the individual child device is attached.
* Skip the device if it is disabled, when searching for a serial portyokota1999-06-292-0/+10
| | | | to be used for the kernel console in sccnprobe().
* Fill in tp->t_windowsize AFTER the call to (*linesw[tp->t_line].l_open)(),yokota1999-06-291-2/+6
| | | | | | | rather than BEFORE the call. Otherwise the structure will be `zero'ed out by l_open, which actually is ttyopen(), if !TS_OPEN. PR: kern/12420
* Stop signals being generated after meteor_close.roger1999-06-291-1/+6
| | | | | | | Update METEORSSIGNAL to disable signals by setting the signal to 0. PR: i386/10533 Submitted by: Frode Vatvedt Fjeld <frodef@dslab7.cs.uit.no>
* Clarify what happens if fd is set to -1billf1999-06-291-2/+4
| | | | Submitted by: Alfred Perlstein <bright@rush.net>
* (mostly) fix ordering.peter1999-06-292-304/+302
|
* No longer need to set B_ASYNC flag since BUF_KERNPROC nowmckusick1999-06-293-6/+3
| | | | unconditionally sets the identity of the buffer.
* Hopefully fix the remaining glitches with the BUF_*() changes. This shouldpeter1999-06-294-27/+18
| | | | | | | | | | | | | (really this time) fix pageout to swap and a couple of clustering cases. This simplifies BUF_KERNPROC() so that it unconditionally reassigns the lock owner rather than testing B_ASYNC and having the caller decide when to do the reassign. At present this is required because some places use B_CALL/b_iodone to free the buffers without B_ASYNC being set. Also, vfs_cluster.c explicitly calls BUF_KERNPROC() when attaching the buffers rather than the parent walking the cluster_head tailq. Reviewed by: Kirk McKusick <mckusick@mckusick.com>
* Lock buffer before calling strategy.grog1999-06-292-3/+8
| | | | Idea-stolen-from: peter (sys/dev/ccd/ccd.c revision 1.49)
* close_drive:grog1999-06-291-6/+5
| | | | | | | | Correct race condition between caller and daemon. Tripped-over-by: Zach Heilig <zach@uffdaonline.net> Bernd Walter <ticso@cicely.de> Niels Chr. Bank-Pedersen <ncbp@bank-pedersen.dk>
* Correct type of intializer for (undocumented) cdevsw.d_parms.grog1999-06-291-1/+2
| | | | Submitted-by: peter
* Move call to umask(0) back into pw_util(), because the latterpb1999-06-293-5/+9
| | | | function is also used by chpass(1) and passwd(1).
* Save common_tssd before it's loaded and the busy bit set.luoqi1999-06-282-6/+6
| | | | Submitted by: bde
* Fix a bug that was almost certainly making breadn() fail. BUF_KERNPROC()peter1999-06-281-2/+2
| | | | | was being called on the wrong bp - it should be called on the one that's just about to be fed to VOP_STRATEGY().
* Typo: BUF_INITLOCK -> BUF_LOCKINIT and BUF_FREELOCK -> BUF_LOCKFREE.kato1999-06-282-6/+6
|
* Use the correct value for banksize so splash_pcx works in LFB modes.des1999-06-282-4/+4
|
* Sync with sys/i386/isa/clock.c revision 1.138.kato1999-06-283-3/+9
|
* Sync with sys/i386/i386/userconfig.c revision 1.146.kato1999-06-281-3/+5
|
* Sync with sys/i386/i386/machdep.c revision 1.344.kato1999-06-282-2/+14
|
OpenPOWER on IntegriCloud