summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Document newly added loader tunable/sysctl variableyongari2009-12-241-1/+19
| | | | | dev.ste.%d.int_rx_mod. While I'm here add .Xr vlan as ste(4) supports long frames.
* Removed duplicate usbd_xfer_state(9) link.ru2009-12-222-2/+0
|
* Sort mlinks.ru2009-12-221-66/+66
|
* MFV of tzcode2009t, r200833edwin2009-12-223-11/+86
| | | | | | Comment only, no data changes. MFC after: 1 week
* If none of the watchdogs supports the requested timeout value, theru2009-12-211-3/+3
| | | | code returns EOPNOTSUPP, not EINVAL.
* - Eliminated hard sentence breaks.ru2009-12-211-14/+15
| | | | | - Fixed spelling of EINVAL. - Sorted sections.
* Removed one more Alpha leftover.ru2009-12-211-1/+0
|
* Reference the correct man page for firmware(9).bcr2009-12-191-1/+1
| | | | | | | | PR: docs/140986 Submitted by: Glen Barber (glen dot j dot barber at gmail dot com) MFC after: 4 days Reviewed by: sam Approved by: sam, jkois (mentor)
* Document more VIA Velocity family controllers to vge(4). Previouslyyongari2009-12-181-9/+10
| | | | | | | | it mentioned only VT6122. While I'm here remove the mention of VT3119 which seems to be VIA's internal model name and VT3119 wouldn't be available to end users. Reviewed by: brueffer
* Add new "hw.psm.tap_enabled" tunable and sysctl.dumbbell2009-12-181-0/+12
| | | | | | | | | | | | | This tunable allows one to enable (1) or disable (0) gestures like tap and tap-hold on Synaptics TouchPad when the Extended mode isn't enabled (ie. "hw.psm.synaptics_support" not set). By default, the value is -1 in order to keep the current behaviour of not enabling/disabling gestures explicitly. PR: kern/139272 Submitted by: David Horn <dhorn2000 AT gmail DOT com> Reviewed by: David Horn <dhorn2000 AT gmail DOT com>
* Document newly added loader tunable and sysctl variables.yongari2009-12-171-1/+33
| | | | | | | o hw.vge.msi_disable o dev.vge.%d.int_holdoff o dev.vge.%d.rx_coal_pkt o dev.vge.%d.tx_coal_pkt
* Make man page reflect the output columnsjulian2009-12-161-0/+2
| | | | MFC after: 1 week
* Forgot to bump .Dd, so do it with this commit. Chose local time overimp2009-12-162-2/+2
| | | | UTC time for the date...
* Docmuent NO_KERNEL{CLEAN,CONFIG,DEPEND,OBJ} as necessary. Updateimp2009-12-162-2/+21
| | | | documentation on KERNFAST meaning.
* Improve the markupdougb2009-12-141-2/+5
| | | | Submitted by: ru
* Revert the xterm terminal behavior to NOT clear the screen afterdougb2009-12-142-7/+47
| | | | | | | | | exiting a pager, vi, etc. Add some example xterm*-clear entries to the termcap files to make it easier for people to enable that behavior. Document the examples in the man page to make them easier to find.
* Document PBDRY and SLEEPQ_STOP_ON_BDRY.kib2009-12-122-3/+22
| | | | | Requested and reviewed by: attilio MFC after: 3 days
* In current code, threads performing an interruptible sleep (on bothattilio2009-12-121-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sxlock, via the sx_{s, x}lock_sig() interface, or plain lockmgr), will leave the waiters flag on forcing the owner to do a wakeup even when if the waiter queue is empty. That operation may lead to a deadlock in the case of doing a fake wakeup on the "preferred" (based on the wakeup algorithm) queue while the other queue has real waiters on it, because nobody is going to wakeup the 2nd queue waiters and they will sleep indefinitively. A similar bug, is present, for lockmgr in the case the waiters are sleeping with LK_SLEEPFAIL on. In this case, even if the waiters queue is not empty, the waiters won't progress after being awake but they will just fail, still not taking care of the 2nd queue waiters (as instead the lock owned doing the wakeup would expect). In order to fix this bug in a cheap way (without adding too much locking and complicating too much the semantic) add a sleepqueue interface which does report the actual number of waiters on a specified queue of a waitchannel (sleepq_sleepcnt()) and use it in order to determine if the exclusive waiters (or shared waiters) are actually present on the lockmgr (or sx) before to give them precedence in the wakeup algorithm. This fix alone, however doesn't solve the LK_SLEEPFAIL bug. In order to cope with it, add the tracking of how many exclusive LK_SLEEPFAIL waiters a lockmgr has and if all the waiters on the exclusive waiters queue are LK_SLEEPFAIL just wake both queues. The sleepq_sleepcnt() introduction and ABI breakage require __FreeBSD_version bumping. Reported by: avg, kib, pho Reviewed by: kib Tested by: pho
* Install firmware(9) examples.antoine2009-12-121-0/+6
| | | | MFC after: 1 month
* Reference the correct man page for firmware(9).bcr2009-12-111-1/+1
| | | | | | | | PR: docs/140985 Submitted by: Glen Barber (glen dot j dot barber at gmail dot com) MFC after: 7 days Reviewed by: rpaulo Approved by: rpaulo, jkois (mentor)
* Update termcap entries for xterm.ed2009-12-101-105/+128
| | | | | | | | | | It turns out these entries do make Terminal.app behave a little better. According to Thomas Dickey, Terminal.app should use TERM=nsterm anyway, but we don't support this yet. Already having an improved termcap entry helps, so I am going to MFC this change after all. Suggested by: Leonidas Tsampros <ltsampros upnet gr> MFC after: 1 month
* Record part of history I participated in.kib2009-12-101-0/+11
| | | | No objections from: ed, pho
* Add myself, and show ed@ as my mentor.gavin2009-12-091-0/+2
| | | | Approved by: ed (mentor)
* Add missing relation between philip and I.ed2009-12-091-0/+1
| | | | It seems I forgot this when I became a committer last year.
* Make `make cleanilinks' work in /sys/modules.ed2009-12-061-6/+5
| | | | | | | | cleanilinks wasn't listed in <bsd.subdir.mk>. Instead of adding it to /sys/modules/Makefile, we'd better just add it to <bsd.subdir.mk> directly, so we don't need to change files like /sys/modules/sound/Makefile as well. This means you can finally clean up all those dangling symlinks created by individual module compilation at once.
* Add manpages for ams(4), akbd(4), adb(4), and cuda(4), which describenwhitehorn2009-12-036-2/+319
| | | | | | various drivers for Apple Desktop Bus controllers and peripherals. MFC after: 3 days
* Add a new library: libulog.ed2009-12-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | One of the things I really want to do, is to get rid of the limitations of our current utmp(5) mechanism: - It only allows 8 byte TTY device names. - The hostname only allows 16 bytes of storage. I'm not a big fan of <utmpx.h>, but I think we should at least try to add parts of it. Unfortunately we cannot implement <utmpx.h>, because we miss various fields, such as ut_id, ut_pid, etc. The API provided by libulog shares some similarities with <utmpx.h>, so it shouldn't be too hard to port these applications eventually. In most simple cases, it should just be a matter of removing the ulog_ prefix everywhere. As a bonus, it also implements a function called ulog_login_pseudo(), which allows unprivileged applications to write log entries, provided they have a valid file descriptor to a pseudo-terminal master device. libulog will allow a smoother transition to a new file format by adding a library interface to deal with utmp/wtmp/lastlog files. I initially thought about adding the functionality to libutil, but because I'm not planning on keeping this library around forever, we'd better keep it separated. Next items on the todo list: 1. Port applications in the base system (and ports) to libulog, instead of letting them use <utmp.h>. 2. Remove <utmp.h>, implement <utmpx.h> and reimplement this library on top. 3. Port as many applications as possible back to <utmpx.h>.
* Add missing parameter description.trasz2009-12-021-1/+3
|
* Unbreak user space after if_timer/if_watchdog removal in r199975.bz2009-12-011-14/+2
| | | | Tested by: glebius
* amdsbwd: new driver for AMD SB600/SB7xx watchdog timeravg2009-11-302-0/+74
| | | | | | | | | | | | The hardware is compliant with WDRT specification, so I originally considered including generic WDRT watchdog support, but decided against it, because I couldn't find anyone to the code for me. WDRT seems to be not very popular. Besides, generic WDRT porbably requires a slightly different driver approach. Reviewed by: des, gavin, rpaulo MFC after: 3 weeks
* Correct typo.bz2009-11-291-1/+1
| | | | | Reported by: gabor MFC after: 5 days
* Enable IPcomp by default.bz2009-11-291-3/+5
| | | | | PR: kern/123587 MFC after: 5 days
* Fix the cross-reference to sctp_opt_info in the text - section 3, not 2.roam2009-11-271-1/+1
| | | | | | PR: 140938 Submitted by: Bruce Cran <bruce@cran.org.uk> MFC after: 2 weeks
* o HEAD is FreeBSD 9-current now.maxim2009-11-271-2/+5
| | | | Submitted by: Alex Kozlov
* o FreeBSD 8.0 added.maxim2009-11-271-0/+3
|
* Add IBM ServeRAID-MR10i to the hardware list.brueffer2009-11-261-1/+3
| | | | | Submitted by: pluknet <pluknet@gmail.com> MFC after: 3 days
* Grammar and mdoc improvements.brueffer2009-11-241-13/+13
| | | | MFC after: 3 days
* LSI MegaRAID 9260 works, sort the hardware list while here.brueffer2009-11-241-2/+4
| | | | | Submitted by: Jason <jhelfman@e-e.com> MFC after: 3 days
* Refer more recently added Marvell chips.mav2009-11-231-2/+2
|
* Add ada(4) man page.mav2009-11-192-0/+139
|
* Fix mistyped \n in makc's label.mandree2009-11-181-1/+1
| | | | | This and previous commit have been... Approved by: garga (mentor)
* Add mandree@ and mentorship relations with garga/miwi.mandree2009-11-181-0/+3
|
* Add a missing .Ed tag.delphij2009-11-181-0/+1
| | | | MFC after: 2 weeks
* rc.early(8) was removed as of 20090530 so remove manual page referencedelphij2009-11-182-16/+1
| | | | | | to it. MFC after: 1 week
* Catch up with r130332 which changed the default timezone from GMT to UTC.obrien2009-11-171-2/+2
| | | | | Otherwise the tzload() (when called by gmtload()) fails to locate the UTC file and loads the posixrules.
* Fix typo.brueffer2009-11-171-1/+1
| | | | | | PR: 140615 Submitted by: Andrius Morkunas <hinokind@gmail.com> MFC after: 3 days
* MFV of tzdata2009s, r199334edwin2009-11-162-3/+24
| | | | | | | - Fix (harmless) typo in the definitions of Antarctica/David - Fiji will go into DST from 29 November 2009 to 25 April 2010. MFC after: 3 days
* In r199127/r199152 I forgot to bump .Dddougb2009-11-151-1/+1
|
* Add atp(4) man page.rpaulo2009-11-152-0/+186
| | | | Submitted by: Rohit Grover <rgrover1@gmail.com>
* Since %b contains unit, %b is not suitable for c_fmt, now. Use %_mume2009-11-143-3/+3
| | | | instead.
OpenPOWER on IntegriCloud