summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Note addition of est(4)njl2005-02-201-1/+3
|
* Remove the note about em(4) not working with bridge(4) when hardwarebrueffer2005-02-201-5/+1
| | | | | assisted VLAN processing is enabled from the BUGS section. This is expected to work now.
* Document the cpufreq_drv_type() method and info-only flag.njl2005-02-181-6/+15
|
* Remove dublicated device entry from the synopsis.brueffer2005-02-171-1/+0
| | | | | Submitted by: Ulrich Spoerlein <q@uni.de> MFC after: 3 days
* Copyright year update.pjd2005-02-161-1/+1
|
* Don't say that mtx_lock() will "sleep" if another kernel thread isru2005-02-151-2/+2
| | | | | | | | holding the mutex, say it will "block". Later in this manual page we say that sleeping while holding a mutex isn't allowed, and this can be confusing. Submitted by: jhb
* Expand contractions.ru2005-02-153-3/+3
|
* Adapt for new KDB world order.brueffer2005-02-141-4/+4
| | | | | | PR: 77528 Submitted by: Jamin Brown <alec@gwi.net> MFC after: 3 days
* Fix English grammar.glebius2005-02-141-1/+1
| | | | Submitted by: ru
* Update information now that support for priorities has been added.njl2005-02-141-4/+9
|
* Document NGM_ETHER_DETACH functionality.glebius2005-02-141-5/+6
|
* Add a SUBDIR_TARGETS variable which can be set to a list ofru2005-02-141-1/+2
| | | | | | | | | | | | additional targets that will cause descending into subdirs. Example: cd /sys/modules; make load SUBDIR_TARGETS=load (But don't try it with your pet.) Submitted by: Alexey Klimov PR: 47601
* Expand contractions.ru2005-02-1319-29/+29
|
* who's -> whoseru2005-02-131-1/+1
|
* Expand *n't contractions.ru2005-02-1360-118/+118
|
* mdoc(7) review.ru2005-02-131-62/+48
| | | | (I thought Nate has committed it long ago, apparently not.)
* Bump date. Reminded by: runjl2005-02-131-1/+1
|
* Update documentation of tunables.njl2005-02-131-7/+4
|
* Document multicast membership control messages.glebius2005-02-121-1/+13
|
* No one cares about when the manpage first appeared. Mention when the driverbrueffer2005-02-121-2/+2
| | | | | | appeared instead. MFC after: 3 days
* Add a bit more caveat text about MUTEX_PROFILING -- try to avoid using itrwatson2005-02-111-0/+23
| | | | | | with other profiling and debugging options, such as INVARIANTS, WITNESS, kernel profiling, etc. They all interfere with each other nastily and will generate fairly useless results.
* Expand BSS.obrien2005-02-111-0/+1
|
* Fully document (no)?(device|option)s?.des2005-02-101-17/+23
| | | | This page should probably be repocopied to src/usr.sbin/config/.
* Note that the ICH6 controller is supported.jkoshy2005-02-101-1/+1
| | | | Reviewed by: sos
* Minor nits noted by ru@imp2005-02-091-3/+5
|
* Note the options required for the cards as I know it...imp2005-02-091-2/+2
|
* Fixed the misplaced $FreeBSD$.ru2005-02-0938-123/+138
|
* Document EBUSY.trhodes2005-02-081-1/+5
| | | | | PR: 73387 Submitted by: Thomas Ludwig <tludwig@smr.ch> (original version)
* Add xrefs to crypt(3) and pw(8) and add a warning about not manuallytrhodes2005-02-081-2/+8
| | | | | | | altering passwd related files. PR: 74656 Submitted by: Jilles Tjoelker <jilles@stack.nl> (original version)
* Update device_find_child(9) to return the first matching child if unitnjl2005-02-081-3/+10
| | | | | | is set to -1. Reviewed by: dfr, imp
* Also add the manpage entry for cpufreq.njl2005-02-081-0/+1
|
* Add an initial manpage for the cpufreq framework and methods to help usersnjl2005-02-081-0/+271
| | | | | and developers who want to import new hardware drivers. This could also certainly use mdoc review.
* Nuke information about GDB_REMOTE_CHAT, it was removed some time ago.brueffer2005-02-081-10/+1
| | | | MFC after: 3 days
* Allow building/installing of NLS catalogs while building of librariesphantom2005-02-081-0/+1
| | | | MFC after: 3 days
* Fix sloppy use of "manpage", bump .Dd where applicable and rename RED tomlaier2005-02-071-2/+2
| | | | | | | Random Early Detection (not ... Drop) in order to be consistent with other documentation on ALTQ Pointed out by: simon, ru, Brad Davis
* Introduce three new targets for ports collection:krion2005-02-071-1/+13
| | | | | | showconfig-recursive, rmconfig-recursive and config-conditional. MFC after: 3 days
* Be more verbose about altq SYNOPSIS and add more linkage in the relating pfmlaier2005-02-071-1/+10
| | | | | | | | documents. Inspired by: scottl Reviewed by: Brad Davis <so14kNOso14kSPAMcom> MFC after: 3 days
* English and mdoc(7) cleanup.glebius2005-02-071-21/+25
| | | | Submitted by: ru
* Add a mechanism for associating a mutex with a callout when theiedowse2005-02-072-2/+56
| | | | | | | | | | | | | | | | | | | | | | callout is first initialised, using a new function callout_init_mtx(). The callout system will acquire this mutex before calling the callout function and release it on return. In addition, the callout system uses the mutex to avoid most of the complications and race conditions inherent in asynchronous timer facilities, so mutex-protected callouts have much simpler semantics. As long as the mutex is held when invoking callout_stop() or callout_reset(), then these functions will guarantee that the callout will be stopped, even if softclock() had already begun to process the callout. Existing Giant-locked callouts will automatically pick up the new race-free semantics. This should close a number of race conditions in the USB code and probably other areas of the kernel too. There should be no change in behaviour for "MP-safe" callouts; these still need to use the techniques mentioned in timeout(9) to avoid race conditions.
* Note changes to throttling sysctls and new power_profile(8) cpufrq support.njl2005-02-062-22/+14
|
* Document NO_GPIBphk2005-02-062-0/+4
|
* Document NO_NETCAT.delphij2005-02-062-1/+7
|
* List the LSI 320-2E PCI-Express controller as supported.rushani2005-02-061-0/+2
| | | | Reviewed by: scottl@
* Manpage for ng_ipfw node.glebius2005-02-052-0/+124
|
* Remove Xref to nonexistant ifmedia.4brueffer2005-02-051-1/+0
| | | | MFC after: 3 days
* Remove last traces of le.4brueffer2005-02-053-3/+0
| | | | MFC after: 3 days
* Remove Xref to nonexistant cap.3brueffer2005-02-051-1/+0
| | | | | Ok'ed by: rwatson MFC after: 3 days
* - replace pointers to XF86Config with xorg.confbrueffer2005-02-051-8/+3
| | | | | | | - remove outdated XFree86 3.3.1 information - bump .Dd MFC after: 3 days
* Remove last traces of lomac.4brueffer2005-02-053-4/+1
| | | | MFC after: 3 days
* Backout last commit, lomac_enable is still valid. Just Xref mac_lomac.4brueffer2005-02-051-0/+10
| | | | instead of lomac.4.
OpenPOWER on IntegriCloud