summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary Dlink de650 entryimp2005-09-241-1/+0
|
* The DLink DE650 has the same ID as Linksys EthernetCard, so we don'timp2005-09-241-1/+0
| | | | need a sperate entry for it.
* Try to avoid crashes during kernel startup by limiting the # of EISAwilko2005-09-241-0/+3
| | | | | | | | | | | slots to probe. Problems have been reported in this area, lets hope this bandaid helps. !! Owners of EISA-equipped Alpha machines are requested to at least !! boot-test a 6-BETA build and report back to the Alpha list. Thanks! Approved by: re (scottl) Suggested by: ticso
* Simplify the code by making use of 'kldstat -q -m <mod>'.pjd2005-09-242-7/+4
| | | | No objections from: mlaier
* This part of the struct isn't needed on FreeBSD:netchild2005-09-241-0/+2
| | | | | | | | | | ---snip--- FYI this bit isn't needed for FreeBSD - I think it came from either OpenBSD or NetBSD where arc4random() wasn't available during cold boot. ---snip--- Explained by: iedowse
* The function inplace_edit() doesn't exist anymore, remove the prototype.stefanf2005-09-241-1/+0
| | | | Submitted by: Leonardo Chiquitto Filho
* Make it possible to set the NANO_TOOLS variable to a directory outsidesimon2005-09-241-2/+11
| | | | | | | | of $NANO_SRC, which can e.g. be used if the nanobsd scripts are not in the source tree being built. Improved by: phk Approved by: phk
* Update usage.pjd2005-09-241-1/+1
|
* Fix typo.brueffer2005-09-241-1/+1
| | | | | | PR: 86522 Submitted by: Stephen Hurd <shurd@sasktel.net> MFC after: 3 days
* Make rule zero really magical, that way we don't have to do anythingphk2005-09-243-153/+99
| | | | | | | | | | | | | | | | | | when we mount and get zero cost if no rules are used in a mountpoint. Add code to deref rules on unmount. Switch from SLIST to TAILQ. Drop SYSINIT, use SX_SYSINIT and static initializer of TAILQ instead. Drop goto, a break will do. Reduce double pointers to single pointers. Combine reaping and destroying rulesets. Avoid memory leaks in a some error cases.
* Modify the code path of the ifdef NOTYET part of _kse_single_thread():brian2005-09-244-16/+22
| | | | | | | | | | | | | | | | | | | | o Don't reinitialise the atfork() handler list in the child. We are meant to call the child handler, and on subsequent fork()s should call all three functions as normal. o Don't reinitialise the thread specific keyed data in the child after a fork. Applications may require this for context. o Reinitialise curthread->tlflags after removing ourselves from (and reinitialising) the various internal thread lists. o Reinitialise __malloc_lock in the child after fork() (to balance our explicitly taking the lock prior to the fork()). With these changes, it is possible to enable the NOTYET code in thr_kern.c to allow the use of non-async-safe functions after fork()ing from a threaded program. Reviewed by: Daniel Eischen <deischen@freebsd.org> [_malloc_lock reinitialisation has since been moved to avoid polluting the !NOTYET code]
* Simplify the code a bit by using newly added (to kldstat(8) '-q') option.pjd2005-09-231-4/+1
|
* Add '-q' option, which (when used with '-m' option) just tells if the givenpjd2005-09-232-3/+15
| | | | | | | | module is loaded or compiled into the kernel. This is useful mostly in startup scripts, when module should be loaded only if it wasn't compiled into the kernel nor already loaded, eg.: kldstat -q -m g_eli || kldload geom_eli.ko || err 1 'geom_eli module failed to load.'
* Remove obsolete includeimp2005-09-231-2/+0
|
* Restore a historical ufs_inactive behavior that has been changeddelphij2005-09-231-1/+1
| | | | | | | | | | | | | | | | | | | in rev. 1.40 of ufs_inode.c, which allows an inode being truncated even when the filesystem itself is marked RDONLY. A subsequent call of UFS_TRUNCATE (ffs_truncate) would panic the system as it asserts that it can only be called when the filesystem is mounted read-write (same changeset, rev. 1.74 of sys/ufs/ffs/ffs_inode.c). Because ffs_mount() already takes care of sync'ing the filesystem to disk before being downgraded to readonly, it appears to be more desirable that we should not permit this sort of writes to disk. This change would fix a panic that occours when read-only mounted a corrupted filesystem and doing some file operations. MT6/5/4 candidate Reviewed by: mckusick
* If we're not installing OpenSSH in the base, don't install its startupwollman2005-09-231-1/+6
| | | | | file either. This clears the way for third-party SSH ports to install an RCng startup script.
* Add myself to FreeBSD calendarmnag2005-09-231-0/+1
| | | | Approved by: pav (mentor)
* Fix vgrind(1) indexing I broke in previous revision.ru2005-09-231-0/+2
| | | | | PR: bin/86343 Submitted by: Matej Vela <vela@debian.org>
* Canonicalize the UNIX domain socket copyright layout: original holdersrwatson2005-09-231-2/+3
| | | | | | before more recent holders. MFC after: 3 days
* For reasons of consistency (and necessity), assert an exclusive vnoderwatson2005-09-231-0/+1
| | | | | | | lock on the fifo vnode in fifo_open(): we rely on the vnode lock to serialize access to v_fifoinfo. MFC after: 3 days
* Whitespaces cleanup.krion2005-09-231-62/+62
| | | | | PR: conf/81926 Submitted by: Gavin Atkinson <gavin.atkinson at ury dot york dot ac dot uk>
* Frank Lloyd Wright birth year is 1867, not 1869.krion2005-09-231-1/+1
| | | | | PR: conf/82051 Submitted by: Derek Jones <derek at wahila dot com>
* Fix typo, FRG and GDR became UNO members in 1973, not in 1993.krion2005-09-231-1/+1
| | | | | PR: conf/86193 Submitted by: Matthias Buelow <mkb at incubus dot de>
* Fix commentemax2005-09-221-1/+1
|
* Forgot to commit ata-card fixes last night. Fix gleb's attempt to doimp2005-09-221-4/+7
| | | | | the right thing by merging in the changes I neglected to commit last night.
* Fix build.glebius2005-09-221-9/+4
|
* Bump up BUFSIZE from 4k to 8k. This was requested by portmgr@ to allowmp2005-09-221-0/+1
| | | | | | ports builds in the cluster to work correctly. Tested by: kris
* Note Hawking PN652TX supportimp2005-09-221-0/+2
|
* Clarify supported cardsimp2005-09-221-2/+3
|
* Fix the "fpudna: fpcurthread == curthread XXX times" problem.ups2005-09-221-0/+1
| | | | | | Tested by: kris@ Reviewed by: peter@ MFC after: 3 days
* Don't pretend to be thread0 when calling sync().ups2005-09-221-2/+2
| | | | | | | | | It confuses the lock manager since in some places thread0 is then used for vnode locking while curthread is used for vnode unlocking. Found by: Yahoo! Reviewed by: ps@,jhb@ MFC after: 3 days
* Cause all flags passed by boot2 to set the respective loader(8)ru2005-09-223-1/+12
| | | | | boot_* variable. The end effect is that all flags from boot2 are now passed to the kernel.
* Add loader(8) variables for RB_DFLTROOT, RB_MUTE, and RB_PAUSE:ru2005-09-2210-15/+90
| | | | "boot_dfltroot", "boot_mute", and "boot_pause" respectively.
* Remove compat layer for OLDCARD compatibility. All instances of itimp2005-09-222-39/+0
| | | | are now gone from the tree.
* Since special interface types get their own subsectionsyar2005-09-221-98/+104
| | | | | | (not in mdoc(7) sense yet) in ifconfig(8) manpage, create such subsections for gif(4) and vlan(4) so that their specific options are not mixed up with general options.
* - RBX_MASK wasn't updated when RB_PAUSE was changed from 0x40000ru2005-09-222-4/+4
| | | | | | to 0x100000 in rev. 1.67. - NOPT wasn't updated (decremented) in previous revision.
* Fix a typobrian2005-09-221-1/+1
| | | | Obtained from: OpenBSD
* Add fi_sx, an sx lock to serialize I/O operations on the socket pairrwatson2005-09-221-3/+16
| | | | | | | | | | | | | | | | | | | | underlying the POSIX fifo implementation. In 6.x/7.x, fifo access is moved from the VFS layer, where it was serialized using the vnode lock, to the file descriptor layer, where access is protected by a reference count but not serialized. This exposed socket buffer locking to high levels of parallelism in specific fifo workloads, such as make -j 32, which expose as yet unresolved socket buffer bugs. fi_sx re-adds serialization about the read and write routines, although not paths that simply test socket buffer mbuf queue state, such as the poll and kqueue methods. This restores the extra locking cost previously present in some cases, but is an effective workaround for the instability that has been experienced. This workaround should be removed once the bug in socket buffer handling has been fixed. Reported by: kris, jhb, Julien Gabel <jpeg at thilelli dot net>, Peter Holm <peter at holm dot cc>, others MFC after: 3 days
* Add HTTP proxy authentication, via the HTTP_PROXY_AUTH environmentcperciva2005-09-221-1/+101
| | | | | | | variable. Tested by: Emil Mikulic X-MFC-After: 6.0-RELEASE
* 'PC Card' instead of other variantsimp2005-09-226-12/+12
|
* Eliminate dead codeimp2005-09-221-6/+0
|
* PC Card instead of other variantsimp2005-09-222-5/+5
|
* Finish last commit: actually remove compat methods from bt3c_pccard_methodsimp2005-09-221-7/+3
|
* Remove broken OLDCARD compat shims.imp2005-09-221-16/+4
| | | | | "PC Card" is the correct spelling. "PC-Card" isn't, per the PCMCIA standard.
* Do not use passphraseless keys for authentication unless the nullokdes2005-09-222-2/+13
| | | | | | | | option was specified. PR: bin/81231 Submitted by: "Daniel O'Connor" <doconnor@gsoft.com.au> MFC after: 3 days
* MFp4: save mac addr hint, eliminage OLDCARD shimsimp2005-09-222-35/+11
|
* Use the AHC_DISABLE_PCI_PERR flag to silence parity error reporting ongibbs2005-09-221-8/+15
| | | | | | chips where setting the FAILDIS bit is not effective. While here, try again to make it clear that reported parity errors indicate a failure of some PCI device *other than* the aic7xxx controller.
* Remove OLDCARD shimsimp2005-09-221-33/+17
|
* Enhance diagnostic printfs for the chains of free lists used togibbs2005-09-221-1/+3
| | | | avoid SCB ID collissions to non-packetized targets.
* Correct bug that caused the completed "recovery" scb to have itsgibbs2005-09-222-2/+4
| | | | | | timer reset rather than the timer of an SCB still pending on the controller after recovery completed. This should correct timeout loops seen in the field.
OpenPOWER on IntegriCloud