summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* mdoc: make pages render with mandocuqs2010-10-213-3/+3
| | | | | | It's a bit more pedantic regarding .Bl list elements. This has an added benefit of unbreaking the ipfw(8) manpage, where groff was silently skipping one list element.
* catch up manual pages with rename of vm_page_sleep_busy to vm_page_sleep_if_busyavg2010-10-203-8/+8
| | | | | Suggested by: alc MFC after: 4 days
* VOP_GETPAGES.9: clarify and correct description of parameters and requirementsavg2010-10-201-13/+18
| | | | | | | | In cooperation with alc and kib, who provided valuable insights and suggestions. Reviewed by: alc, kib (earlier version) MFC after: 4 days
* PG_BUSY -> VPO_BUSY, PG_WANTED -> VPO_WANTED in manual pages and commentsavg2010-10-203-7/+7
| | | | | Reviewed by: alc MFC after: 4 days
* o Put missed w/space back.maxim2010-10-201-1/+1
| | | | | Submitted by: Garrett Cooper MFC after: 3 days
* Clarify that lagg(4) sends/receives on active port, not the master port.delphij2010-10-191-3/+3
| | | | | | Note that this still seems to be a little bit confusing as the concept of "master" is different from what people would expect on a networking equipment.
* uma_zfree(zone, NULL) should do nothing, to match free(9).mdf2010-10-191-0/+7
| | | | | Noticed by: Ron Steinke <rsteinke at isilon dot com> MFC after: 3 days
* mdoc: fix markup typouqs2010-10-191-1/+1
| | | | MFC after: 1 week (together with r213983)
* mdoc: drop even more redundant .Pp callsuqs2010-10-195-8/+0
| | | | | | No change in rendered output, less mandoc lint warnings. Tool provided by: Nobuyuki Koganemaru n-kogane at syd.odn.ne.jp
* Fix typo: Offlaod -> Offload.pluknet2010-10-181-1/+1
| | | | | | PR: docs/150756 Approved by: avg (mentor) MFC after: 3 days
* Update links for taskqueue(9) functions.pjd2010-10-181-1/+7
|
* Add an entry for myself to committers-ports.dot.culot2010-10-171-0/+5
| | | | Approved by: sahil@ (mentor)
* Document vunref(9), add some important notes for vrele(9) and vput(9).kib2010-10-173-71/+49
| | | | | | Merge all three manpages to one, removing separate file for vput(9). MFC after: 1 week
* Document vfs.ncsizefactor and vfs.ncnegfactor.kib2010-10-161-1/+19
| | | | MFC after: 2 weeks
* Change uma_zone_set_max to return the effective value of "nitems" afterlstewart2010-10-161-4/+4
| | | | | | | | rounding. The same value can also be obtained with uma_zone_get_max, but this change avoids a caller having to make two back-to-back calls. Sponsored by: FreeBSD Foundation Reviewed by: gnn, jhb
* - Simplify implementation of uma_zone_get_max.lstewart2010-10-161-9/+30
| | | | | | | | | - Add uma_zone_get_cur which returns the current approximate occupancy of a zone. This is useful for providing stats via sysctl amongst other things. Sponsored by: FreeBSD Foundation Reviewed by: gnn, jhb MFC after: 2 weeks
* Use a safer mechanism for determining if a task is currently running,mdf2010-10-131-8/+1
| | | | | | | | that does not rely on the lifetime of pointers being the same. This also restores the task KBI. Suggested by: jhb MFC after: 1 month
* Use AcpiReset() from ACPICA instead of rolling our own, which is actuallyjkim2010-10-131-2/+1
| | | | | incomplete. If FADT says the register is available, enable the capability by default. Remove the previous default value from acpi(4).
* Document the fact that bwn works really well on the laptop I'm usingjoel2010-10-121-1/+2
| | | | right now (HP 6715b).
* Re-expose and briefly document taskqueue_run(9). The function is usedmdf2010-10-121-0/+15
| | | | | | in at least one 3rd party driver. Requested by: jhb
* mdoc: drop redundant .Pp calls, kill EOL whitespaceuqs2010-10-091-4/+3
|
* Remove the manpath.config entry now that it's no longer installed.gordon2010-10-091-1/+0
| | | | | Submitted by: b. f. Approved by: wes (mentor implicit)
* Document net.link.lagg.failover_rx_all.delphij2010-10-081-2/+11
| | | | MFC after: 1 week
* Extend the "example" section a bit, for other mailers.markm2010-10-081-3/+20
|
* mdoc: drop redundant .Pp and .LP callsuqs2010-10-08103-155/+1
| | | | They have no effect when coming in pairs, or before .Bl/.Bd
* Turn on serialization of task management commands going down to theken2010-10-071-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | controller, but make it optional. After a problem report from Andrew Boyer, it looks like the LSI chip may have issues (the watchdog timer fired) if too many aborts are sent down to the chip at the same time. We know that task management commands are serialized, and although the manual doesn't say it, it may be a good idea to just send one at a time. But, since I'm not certain that this is necessary, add a tunable and sysctl variable (hw.mps.%d.allow_multiple_tm_cmds) to control the driver's behavior. mps.c: Add support for the sysctl and tunable, and add a comment about the possible return values to mps_map_command(). mps_sas.c: Run all task management commands through two new routines, mpssas_issue_tm_request() and mpssas_complete_tm_request(). This allows us to optionally serialize task management commands. Also, change things so that the response to a task management command always comes back through the callback. (Before it could come via the callback or the return value.) mpsvar.h: Add softc variables for the list of active task management commands, the number of active commands, and whether we should allow multiple active task management commands. Add an active command flag. mps.4: Describe the new sysctl/loader tunable variable. Sponsored by: Spectra Logic Corporation
* Add myself (jonathan@) to committers-src.dotjonathan2010-10-071-0/+2
| | | | Reviewed by: rwatson
* Check the device name validity on device registration.jh2010-10-071-7/+16
| | | | | | | | | | | | | | | | A new function prep_devname() sanitizes a device name by removing leading and redundant sequential slashes. The function returns an error for names which already exist or are considered invalid. A new flag MAKEDEV_CHECKNAME for make_dev_p(9) and make_dev_credf(9) indicates that the caller is prepared to handle an error related to the device name. An invalid name triggers a panic if the flag is not specified. Document the MAKEDEV_CHECKNAME flag in the make_dev(9) manual page. Idea from: kib Reviewed by: kib
* Cosmetic change:pluknet2010-10-071-2/+8
| | | | | | | | | Wrap lines for SiS and Promise entries to 80 columns. This doesn't change appearance in page rendered with troff or man.cgi. PR: docs/146195 Approved by: kib (mentor) MFC after: 1 week
* Fix wrong slashes in a previous commit.pluknet2010-10-061-1/+1
| | | | Approved by: avg (mentor)
* Add myself to calendar.freebsd and committers-src.dot.pluknet2010-10-061-0/+4
| | | | Approved by: avg (mentor)
* - Introduce WITH_GPIO knob and disable building gpioctlgonzo2010-10-051-0/+1
| | | | by default. Most systems do not need it.
* Log the number of segments currently in the reassembly queue.lstewart2010-09-251-2/+6
| | | | Sponsored by: FreeBSD Foundation
* Add Planex UE-200TX-G2 to list of supported devices.sanpei2010-09-251-0/+2
| | | | MFC after: 1 day
* Various changes from various sources:gavin2010-09-231-3/+44
| | | | | | | | | | | | | | | - Add "children" [1] - Add "acknowledgement", "acknowledgment", "Austria" and "haunted" [2] - Add "near", "antidisestablishmentarianism" and "Persephone" [2] - "Transvaal" should be capitalized [2] - Correct spelling of "structurelessness" and "Athena" [2] - Add missing atomic elements [3] - Add various words from "word of the day" lists [3] PR: conf/149756 [1] Submitted by: Nick Johnson <freebsd spatula.net> [1] Obtained from: NetBSD [2], OpenBSD [3] MFC after: 1 week
* Add myself as a ports committersunpoet2010-09-221-0/+2
| | | | Approved by: pgollucci (mentor)
* Add new device ids.sanpei2010-09-211-0/+4
| | | | | | | | | | Buffalo (Melco Inc.) LUA3-U2-AGT Logitec LAN-GTJ/U2A(usb/119981) PR: usb/119981 and me Submitted by: "Y.Okabe" <be_works_us at yahoo.com>, hiroo at oikumene.gcd.org Reviewed by: thompsa MFC after: 3 days
* Manual page for the kernel side Secure Neighbor Discovery support.anchie2010-09-192-0/+219
| | | | | Reviewed by: brueffer Approved by: bz (mentor)
* Note that devfs(5) and fdescfs(5) both create /dev/fd file descriptors.gjb2010-09-182-2/+34
| | | | | | | | PR: 144534 Submitted by: Matthew Seaman <m.seaman at infracaninophile co uk> Patch by: Matthew Seaman, keramida Approved by: keramida (mentor) MFC after: 1 week
* Document hw.i8254.freq tunable and machdep.i8254_freq sysctl.mav2010-09-181-0/+5
|
* Add atrtc(4) manual page.mav2010-09-175-0/+61
|
* Fix typo ${attimer.4} -> ${_attimer.4}.mav2010-09-171-1/+1
|
* Add attimer(4) manual page.mav2010-09-174-0/+75
|
* The inflight bandwidth limiter was removed in r212765.andre2010-09-161-67/+1
|
* Add note abotu bwn and newer chipsetsimp2010-09-151-0/+14
|
* Don't suggest using bwn for the bcm4306 cards in the list. Theimp2010-09-151-4/+0
| | | | | | bcm4306 cards are ambiguous. BCM4306 rev 2 requires bwi. BCM4306 rev 3 will work with either. Since we can't easily determine which is which, just remove them.
* MFp4 (//depot/projects/mps/...)ken2010-09-151-1/+1
| | | | | | Fix a typo. Submitted by: pluknet at gmail dot com
* Change licenses of my manual pages to the recommended 2-clause form.mav2010-09-154-49/+45
| | | | Suggested by: joel
* Add eventtimers(7) man page, briefly describing event timers subsystemmav2010-09-154-1/+134
| | | | functionality and configuration options.
* Add hpet(4) man page.mav2010-09-152-0/+107
|
OpenPOWER on IntegriCloud