Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-03-30 | correct arg name; from Matthew Dempsky | Jason McIntyre | |
ok claudio | |||
2008-03-09 | DLT_IEEE_80211_RADIO -> DLT_IEEE802_11_RADIO; | Jason McIntyre | |
from Sam Banks, freebsd docs/121477 | |||
2008-03-02 | improve wording - from deraadt@ | Damien Miller | |
2008-03-02 | Add a arc4random_uniform() that returns a uniformly distributed number | Damien Miller | |
in the range 0 <= x < upper_bound Please use this new API instead of "arc4random() % upper_bound", as it avoids the "modulo bias" that favours small results when upper_bound is not a power of two. feedback deraadt@ mcbride@; ok deraadt@ | |||
2008-02-11 | bump Mdocdate for pages committed in "febuary", necessary because | Jason McIntyre | |
of a typo in rcs.c; | |||
2008-02-03 | Fix the struct pkthdr definition. | Claudio Jeker | |
2008-01-26 | the kids want I/O; | Jason McIntyre | |
2007-12-27 | last item in NAME should not be followed by a comma; from Pierre Riteau | Jason McIntyre | |
2007-12-23 | pmap_steal_memory() returns vaddr_t. | Joel Sing | |
ok miod@ | |||
2007-12-09 | update pedro's email address, at his request; | Jason McIntyre | |
2007-12-09 | kill trailing whitespace; | Jason McIntyre | |
2007-12-09 | clarify that mtx_enter will only raise the ipl if necessary (not | Ted Unangst | |
arbitrarily set it). noticed by deraadt | |||
2007-11-29 | - better integrate msleep() into this page | Jason McIntyre | |
- art says bpendsleep has been removed, so kill it ok art | |||
2007-11-28 | <oga> art write me a manpage | Artur Grabowski | |
<art> What? Write it yourself. <oga> sudo art write me a manpage. <art> ok Document msleep(9). | |||
2007-11-28 | i prefer our ISC license. | David Gwynne | |
2007-11-28 | readjust list width after previous; | Jason McIntyre | |
2007-11-28 | i'm always behind on the doc updates | Ted Unangst | |
2007-11-25 | tweak previous; | Jason McIntyre | |
2007-11-25 | document new WQ_DIRECTOK flag | Ted Unangst | |
2007-11-24 | workq_add_task returns ENOMEM on failure | Ted Unangst | |
2007-11-17 | make it clear in the code and in the man page that the rate2plcp and | Damien Bergamini | |
plcp2rate functions use plcp codes in most-significant-bit-first format (R4-R1). some drivers like wpi(4) and iwn(4) want plcp codes in lsb-first format so they can't use those functions. also the IEEE standard uses R1-R4 notation so this can be a bit confusing for those refering to it. use u_int8_t for plcp code and rate instead of int. | |||
2007-11-14 | Add ieee80211_rate2plcp() and ieee80211_plcp2rate() functions, which | Marcus Glocker | |
convert the PLCP header signal field to a rate value and vice versa. This implementation has been discussed with Damien and doesn't change any existing net80211 structures. ok damien@ | |||
2007-11-03 | Revert last commit which added ieee80211_rate2plcp() and | Marcus Glocker | |
ieee80211_plcp2rate() because I've got a late feedback from Damien that he dislike the implementation method a lot. | |||
2007-11-02 | tweaks for previous; | Jason McIntyre | |
2007-11-01 | Add ieee80211_rate2plcp() and ieee80211_plcp2rate() functions. | Marcus Glocker | |
Help and OK reyk@ | |||
2007-10-10 | rename man page to a real function name | Theo de Raadt | |
2007-10-10 | Update to match cpu_switchto reality. | Artur Grabowski | |
2007-10-02 | add missing MLINKS section for iic(9); 'please commit this!' jmc@ | Constantine A. Murenin | |
2007-09-28 | make clear that the usage and synopsis take the same form | Igor Sobrado | |
problem noticed by jakemsr@; rewording suggested by jmc@ ok jakemsr@, jmc@ | |||
2007-09-14 | sleep(9) was removed aeons ago according to miod, so remove references | Michael Knudsen | |
to it. Because man pages are named after functions (at least they should be) and sleep(9) doesn't exist anymore, sleep.9 is renamed to tsleep.9. Input and reminders from jmc and ratchov. | |||
2007-09-13 | Update manpage to reflect new return code from function. | Tobias Weingartner | |
Thanks to mk@ for reminding me. | |||
2007-09-10 | Introduce a md pmap hook, pmap_remove_holes(), which is supposed to mark | Miod Vallat | |
the holes a MMU may have from a given vm_map. This will be automagically invoked for newly created vmspaces. On platforms with MMU holes (e.g. sun4, sun4c and vax), this prevents mmap(2) hints which would end up being in the hole to be accepted as valid, causing unexpected signals when the process tries to access the hole (since pmap can not fill the hole anyway). Unfortunately, the logic mmap() uses to pick a valid address for anonymous mappings needs work, as it will only try to find an address higher than the hint, which causes all mmap() with a hint in the hole to fail on vax. This will be improved later. | |||
2007-09-07 | Document M_ZERO. | Artur Grabowski | |
2007-08-10 | sync structs with reality | Henning Brauer | |
From: tbert <bret.lambert@gmail.com> | |||
2007-08-02 | more cats removal; | Jason McIntyre | |
2007-07-29 | KNF synopsis: put stars in appropriate places (consistent with other synopses) | Constantine A. Murenin | |
2007-07-28 | pci_intr_line() doesn't take a pointer as its argument. | Mark Kettenis | |
2007-07-16 | fix sensor_task_unregister description to reflect reality; ok dlg | Constantine A. Murenin | |
2007-06-25 | update struct disk; ok deraadt | Jason McIntyre | |
2007-06-24 | tweak the description of sensor_task_unregister; | Jason McIntyre | |
2007-06-24 | document changes to the sensor_task api. task_register now returns a | David Gwynne | |
pointer to the sensor_task it just created, and task_unregister takes it to remove that task from the system. | |||
2007-06-20 | b_cylinder does not need to be set on the callpath down into drivers. | Theo de Raadt | |
cpu_disklabel can go away, since nothing anymore needs to use it; ok miod | |||
2007-06-16 | ieee80211_lookup_node() does not exist. | Damien Bergamini | |
remove prototype in .h and ref in man pages. | |||
2007-06-16 | constify | Damien Bergamini | |
2007-06-11 | spell tedu's name correctly. | Thordur I. Bjornsson | |
ok jmc@,tedu@ | |||
2007-06-07 | move ieee80211_compute_duration() and ieee80211_compute_duration1() | Damien Bergamini | |
functions into the two drivers that use them (atw and rtw.) this code is not generic enough to be used by other drivers and there is no chance that it will ever be used in newer driver since it supports 802.11b only. plus, it hurts my eyes each time i look into ieee80211_output.c. "fine with me as long as the logic doesn't change in the functions" jsg@ | |||
2007-06-06 | setdisklabel() openmask is now a u_int | Theo de Raadt | |
2007-06-01 | Sync return value section with reality. | Moritz Jodeit | |
ok jmc@, "love it" deraadt@ | |||
2007-06-01 | remove crufty adosfs. everytime we try to change a vfs layer interface, | Theo de Raadt | |
adosfs has the issue and in an entirely different way. noone uses this code so this is hte best way to handle the problem diff from pedro who went to sleep but we need to move ahead; ok thib | |||
2007-06-01 | start new sentence w/ capital letter; | Jason McIntyre | |