summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Remove an extra "The".bmah2007-03-161-1/+1
| | | | MFC after: 3 days
* Add missing @brueffer2007-03-151-1/+1
|
* Add a description about hw.firewire.hold_count.simokawa2007-03-151-1/+2
| | | | | MFC: after 3 days PR: kern/93083
* Mention the first RELENG_6 release to include this driver.brueffer2007-03-151-0/+2
| | | | MFC after: 3 days
* Fix markup and reword a sentence to actually make sense.brueffer2007-03-141-3/+3
|
* fix braino in markup.julian2007-03-141-1/+1
|
* Remove obsolete polling members from documentation for struct ifnet.bms2007-03-141-11/+1
| | | | | Submitted by: Aniruddha Bohra MFC after: 5 days
* Add missing punctuation.brueffer2007-03-141-2/+2
|
* fix wording blunderkmacy2007-03-141-1/+1
|
* Various fixes, also the driver can be compiled into the kernel now.brueffer2007-03-141-11/+12
|
* More suggestions from pjd.julian2007-03-141-2/+13
|
* Some comments from pjdjulian2007-03-141-4/+4
|
* Add man page for cxgbkmacy2007-03-142-0/+133
|
* Add locking.9julian2007-03-141-0/+280
| | | | | | | | | | | This is supposed to be a brief overview of the locking primatives. It is not yet complete and contains many place-holders for information I do not know. The locking is getting so diverse that I've lost track of it all. We need this page to keep outselves in sync with what the primitives do. note.. not part of the build yet.
* Typo.grog2007-03-131-1/+1
|
* Stop clobberring the application namespace with localru2007-03-121-37/+37
| | | | | | | | variables such as "sect", "page", and "target"; use underscored versions instead. Discussed with: kan MFC after: 3 days
* my(4) doesn't need miibus(4).brueffer2007-03-112-8/+3
| | | | | | Approved by: rwatson (mentor) Obtained from: DragonFly MFC after: 1 week
* Spell .Xr without a '/'.brooks2007-03-111-1/+1
| | | | Pointy hat: brooks
* Fix a couple markup problems in the previous commit and bump thebrooks2007-03-111-3/+5
| | | | | | document date. Reported by: ru
* Allow background_fsck_delay to be set to a negative value which delaysbrooks2007-03-111-0/+9
| | | | | | | the background fsck indefinitely. This allows the administrator to run it at a convenient time. To support running it from cron, the forcestart argument now causes the fsck to start with no delay and all output to be suppressed.
* Document Silicon Image SiI 3124 and SiI 3132 support.brueffer2007-03-101-2/+2
|
* Allow threads to atomically release rw and sx locks while waiting for anjhb2007-03-0911-91/+169
| | | | | | | | | | | | | | | | | | | event. Locking primitives that support this (mtx, rw, and sx) now each include their own foo_sleep() routine. - Rename msleep() to _sleep() and change it's 'struct mtx' object to a 'struct lock_object' pointer. _sleep() uses the recently added lc_unlock() and lc_lock() function pointers for the lock class of the specified lock to release the lock while the thread is suspended. - Add wrappers around _sleep() for mutexes (mtx_sleep()), rw locks (rw_sleep()), and sx locks (sx_sleep()). msleep() still exists and is now identical to mtx_sleep(), but it is deprecated. - Rename SLEEPQ_MSLEEP to SLEEPQ_SLEEP. - Rewrite much of sleep.9 to not be msleep(9) centric. - Flesh out the 'RETURN VALUES' section in sleep.9 and add an 'ERRORS' section. - Add __nonnull(1) to _sleep() and msleep_spin() so that the compiler will warn if you try to pass a NULL wait channel. The functions already have a KASSERT to that effect.
* Document SLEEPQ_PAUSE.jhb2007-03-091-1/+4
|
* Oof, it is not my day. Unswap the descriptions of EINTR and ERESTART.jhb2007-03-091-2/+2
|
* Fix a typo in the last that claimed that only masked signals were caught.jhb2007-03-091-2/+2
|
* Correct descriptions of EINTR and ERESTART errors. Masked signals don'tjhb2007-03-091-2/+2
| | | | | | interrupt sleeps. Rather, unmasked signals interrupt restarts and can either interrupt the system call by having it return EINTR in userland or force the system call to be restarted.
* - Document cv_wait_unlock(9).jhb2007-03-092-1/+11
| | | | | | | - Don't claim that the mutex is atomically reacquired when a cv_wait routine returns. There's nothing atomic or magical about the lock reacquire. The only magic is that we atomically drop the lock by placing the thread on the sleep queue before dropping the lock.
* Place mtx_destroy() and rw_destroy() right after mtx_init() and rw_init()jhb2007-03-092-6/+6
| | | | to match sx(9) and condvar(9).
* - Sort functions in the order that rwlock(9) and mutex(9) use.jhb2007-03-092-10/+10
| | | | | | | | | - Markup sx_unlock() as a function rather than saying it is a macro. The macro part is an implementation detail, and all the other sx_*lock() functions are actually macros, too. - Use the same style as rwlock(9) and mutex(9) to markup sx_assert() and SX_SYSINIT() with respect to headers and kernel options. - Add a missing MLINK.
* - Sort rwlock functions similar to the order in mutex(9).jhb2007-03-092-6/+10
| | | | - Add a missing MLINK.
* Enable ncurses wide character supportrafan2007-03-091-0/+1
| | | | | Approved by: delphij (mentor) Tested by: kris on pointyhat (early version), current@
* Some minor tweaks and updates to bus_dma(9) including some additional notesjhb2007-03-061-23/+34
| | | | | | on the address filter and locking callback. Reviewed by: ru, scottl
* The firmware images must be loaded as modules at the moment.brueffer2007-03-062-9/+18
|
* As suggested more than once in the lists, drop -M from flags to mfsyar2007-03-061-9/+7
| | | | | | | | | | | | | | | | for /tmp and /var. This makes the memory discs swap-backed instead of malloc-backed. A swap-backed memory disc should not be worse than a malloc-backed one in any scenario because it will start touching swap only when needed. OTOH, a malloc-backed disc can starve limited kernel resources and evenually crash the system. Reflect the change in the rc.conf(5) manpage. Also stop telling lies there about softupdates: it does not waste disc space, it just can delay its freeing. Suggested by: many PR: kern/87255 MFC after: 1 week
* Move macros describing extended attributes in UFS frommckusick2007-03-062-56/+58
| | | | | | | | | | | <sys/extattr.h> to <ufs/ufs/extattr.h>. Move description of extended attributes in UFS from man9/extattr.9 to man5/fs.5. Note that restore will not compile until <sys/extattr.h> and <ufs/ufs/extattr.h> have been updated. Suggested by: Robert Watson
* The firmware files are included in the base system now, reflect this here..brueffer2007-03-052-32/+43
| | | | | | | | While here, remove Xrefs to all other wlan drivers except the Intel ones, these often get confused. Also remove pointers to the old ipw and iwi webpages, they don't include any useful information that's not in the manpages yet. Reviewed by: flz, ru
* Another typo.grog2007-03-051-1/+1
| | | | | Spotted by: ru Another pointy hat to: grog
* Cosmetics: remove trailing white space, wrap over-long lines.grog2007-03-051-4/+6
| | | | Pointy hat to: grog
* Rearrange function descriptions in more logical order.grog2007-03-041-24/+30
| | | | | | Be less alarmist about the dangers of abusing wakeup_one(). Requested by: kris, imp
* Markup polishing.ru2007-03-041-2/+3
|
* style(9) fixes.flz2007-03-022-2/+2
| | | | Reported by: ru
* Add vfs_getopt.9 to the build, and add links for related functions.davidc2007-03-021-0/+6
|
* Document the mount option handling functions.davidc2007-03-021-0/+197
| | | | Reviewed By: ru
* - Add missing subdirectories in BSD.usr.dist mtree file.flz2007-03-021-1/+3
| | | | | | | | - Update hier(7) to reflect latest changes in mtree file. - Add UPDATING entry following Intel firmwares inclusion. Submitted by: mlaier MFC after: 1 month
* Markup fixes.emaste2007-03-021-2/+3
| | | | Submitted by: ru
* - Add Intel firmwares for Intel PRO/Wireless LAN 2100/2200/2915 cards in aflz2007-03-024-1/+21
| | | | | | | | | | | | | uuencoded format along with their respective LICENSE files. - Add new share/doc/legal directory to BSD.usr.dist mtree file. This is the place we install LICENSE files for restricted firmwares. - Teach firmware(9) and kmod.mk about licensed firmwares. Restricted firmwares won't load properly unless legal.<name>.license_ack is set to 1, either via kenv(1) or /boot/loader.conf. Reviewed by: mlaier, sam Permitted by: Intel (via Andrew Wilson) MFC after: 1 month
* Document the new {set,get}{timestamp,counter} messages supported by theemaste2007-03-021-4/+50
| | | | | | ng_source node. Also remove an obsolete email address. Sponsored by: Sandvine Incorporated
* Remove trailing spaces and make the date canonical.ru2007-03-011-8/+8
|
* New sentence -> new line and contractions removed.brueffer2007-03-011-7/+11
|
* Update the isp man page.mjacob2007-02-281-27/+41
| | | | MFC after: 2 weeks
OpenPOWER on IntegriCloud