Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-31 | pmap_remove() correction; from Ariane van der Steld | Jason McIntyre | |
2008-12-14 | MCLGETI takes an mbuf *, not an mbuf. | David Gwynne | |
2008-12-11 | - update the list of types | Jason McIntyre | |
- some text improvements - remember systat(1) ok otto | |||
2008-11-29 | extra word deleted; spotted by jmc | Theo de Raadt | |
2008-11-29 | document MCLGETI | Theo de Raadt | |
2008-11-14 | the warnings produced by -Wtraditional are not interesting, so remove it. | Ted Unangst | |
ok jmc otto | |||
2008-11-09 | remove reference to POOL_DIAGNOSTIC which hasn't existed for nearly a year. | Chris Kuethe | |
ok tedu@ | |||
2008-11-04 | uvmspace_unshare() is never used; ok miod | Theo de Raadt | |
2008-11-03 | Forgot this docu bit in the M_ANYCAST6 removal. This is actually from naddy@ | Claudio Jeker | |
2008-11-01 | change vrele() to return an int. if it returns 0, it can gaurantee that | Theo de Raadt | |
it did not sleep. this is used to avoid checkdirs() to avoid having to restart the allproc walk every time through idea from tedu, ok thib pedro | |||
2008-10-30 | reintroduce mutexes to workqs for locking. | David Gwynne | |
tested by many on many archs including several alpha test. ok tedu@ go for it deraadt@ | |||
2008-10-27 | document pool_setipl. | David Gwynne | |
with help from jmc@, thank you. | |||
2008-10-27 | sa_open -> sio_open, after recent changes; | Jason McIntyre | |
2008-10-26 | add some audio/libsa cross refs; | Jason McIntyre | |
2008-10-16 | sub-system -> subsystem, for consistency withour other pages; | Jason McIntyre | |
2008-10-14 | Change m_devget()'s outdated and unused "offset" argument: It is | Christian Weisgerber | |
now the offset into the first mbuf of the target chain before copying the source data over. From FreeBSD. Convert drivers' use of m_devget(). Mostly from thib@. Update mbuf(9) man page. ok claudio@, thib@ | |||
2008-09-18 | Introduce the infrastructure required to support hardware VLAN tag | Christian Weisgerber | |
stripping: Add a field to the mbuf pkthdr to hold the tag and an mbuf flag that tells if the tag is valid. Inspired by FreeBSD. Struct packing suggested by kettenis@. csum_flags is now 16 bits. Adapt to this in the drivers. ok reyk@, henning@ | |||
2008-09-15 | briefly document the M_LINK0 and M_FILDROP flags; ok jmc@ | Christian Weisgerber | |
2008-09-02 | remove last bits of MALLOC/FREE | Charles Longeau | |
spotted by and initial patch from espie@, with inputs from jmc@ ok espie@ jmc@ | |||
2008-08-29 | MSIZE and MCLBYTES are now defined in sys/param.h; from Jordan Gordeev | Jason McIntyre | |
ok thib | |||
2008-07-30 | In the .Fn entries for timeout_add_usec/nsec, don't call the parameter | Michael Knudsen | |
``sec''. Instead, use usec/nsec. Agreed with/no opposition from blambert. | |||
2008-07-24 | Add timeout_add_sec() etc. to .Nm and, on jmc's request, tweak | Michael Knudsen | |
some other stuff. ok art jmc blambert | |||
2008-07-24 | kill whitespace at eol; | Jason McIntyre | |
2008-07-23 | Correct cases of mishandling of pending reads and writes to prevent | Bob Beck | |
them going negative - this consists of identifying a number of cases of IO not going through the buffer cache and marking those buffers with B_RAW - as well as fixing nfs_bio to show pending writes and reads through the buffer cache via NFS still has a problem with mishandling the counters I believe in the async/sync fallback case where counters stay positive which will be addressed seperately. ok tedu@ deraadt@ | |||
2008-07-23 | Document the new timeout_add_* functions. | Artur Grabowski | |
2008-06-26 | First pass at removing clauses 3 and 4 from NetBSD licenses. | Ray Lai | |
Not sure what's more surprising: how long it took for NetBSD to catch up to the rest of the BSDs (including UCB), or the amount of code that NetBSD has claimed for itself without attributing to the actual authors. OK deraadt@ | |||
2008-06-10 | oops | Theo de Raadt | |
2008-06-10 | rename man page to a function name that actually exists; requested by jmc | Theo de Raadt | |
2008-06-10 | fix previous; | Jason McIntyre | |
2008-06-09 | man page for crypto/idgen.h functions: idgen32() and idgen32_init() | Damien Miller | |
ok deraadt@ | |||
2008-06-09 | Define a new flag, UVM_FLAG_HOLE, for uvm_map to create a vm_map_entry of | Miod Vallat | |
a new etype, UVM_ET_HOLE, meaning it has no backend. UVM_ET_HOLE entries (which should be created as UVM_PROT_NONE and with UVM_FLAG_NOMERGE and UVM_FLAG_HOLE) are skipped in uvm_unmap_remove(), so that pmap_{k,}remove() is not called on the entry. This is intended to save time, and behave better, on pmaps with MMU holes at process exit time. ok art@, kettenis@ provided feedback as well. | |||
2008-06-09 | tweak previous; | Jason McIntyre | |
2008-06-09 | mention CRYPTO_AES_CTR, CRYPTO_AES_XTS | Damien Miller | |
describe special requirement for passing in IV/block number for CRYPTO_AES_XTS | |||
2008-06-09 | man bits for arc4random_bytes => arc4random_buf rename; ok deraadt@ | Damien Miller | |
2008-05-26 | formatting nit in the pseudocode. | Brad Smith | |
2008-05-06 | Add a PR_ZERO flag for pools, to compliment the M_ZERO | Thordur I. Bjornsson | |
malloc flag, does the same thing. use it in a few places. OK tedu@, "then go ahead. and don't forget the manpage (-:" miod@ | |||
2008-05-06 | typo fix; from tanner | Jason McIntyre | |
ok art | |||
2008-04-21 | allow low level audio drivers to specify a default sample format, | Jacob Meuser | |
instead of 8-bit mono mulaw @ 8kHz. this is just the infrastructure; no drivers are specifying a default yet. ok ratchov@, deanna@ | |||
2008-04-17 | Correct a typo: | Owain Ainsworth | |
tsleep -> msleep from Paul de Weerd, Thanks! | |||
2008-04-13 | MSIZE is defined in sys/param.h, not machine/param.h; | Jason McIntyre | |
from Jonathan Thornburg, documentation/5792 | |||
2008-04-12 | getnewvnode() is not a system call; fix from Iruata Souza, though i | Jason McIntyre | |
chose to refer to it as a "call", rather than function, in keeping with the rest of the section; ok dlg | |||
2008-04-03 | Fix function prototype. | Tobias Weingartner | |
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 | |