summaryrefslogtreecommitdiffstats
path: root/share/man/man9 (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* wording tweak from jmcmatthew2013-04-241-2/+3
|
* Add tstohz(9) as the timespec analog to tvtohz(9).matthew2013-04-242-7/+14
| | | | ok miod
* Sync checksum flags with mbuf.h by renaming M_{TCP,UDP}V4_CSUM_OUT tolteo2013-03-231-9/+9
| | | | | | | | | | M_{TCP,UDP}_CSUM_OUT. Also rename m_pkthdr.csum to m_pkthdr.csum_flags. Remove "/IPv4" from the descriptions of the M_{TCP,UDP}_CSUM_IN_* flags since they are also used to calculate TCP or UDP checksums over IPv6, such as on newer bge(4) chips (pointed out by naddy@). feedback/ok naddy, ok haesbaert jmc
* zap trailing whitespace;jmc2013-01-291-2/+2
|
* remove the EXPECTED CHANGES TO THE BUS_SPACE FUNCTIONS section. talk isdlg2013-01-291-50/+1
| | | | | | cheap, if we wanted this stuff there'd be a diff by now. requested by miod@ and kettenis@
* useless comments are uselessdlg2013-01-291-14/+1
|
* bus_space_{read,write}_N dont take different arguments to their non rawdlg2013-01-291-10/+16
| | | | counterparts, so list them separately to the ones that do.
* document bus_space_{read,write}_raw_N(). needs some polishing...dlg2013-01-292-6/+41
|
* there is no untimeout function in our kerneldlg2013-01-281-2/+2
|
* s/the the/the/ in sosplice(9)bluhm2013-01-181-3/+3
| | | | spotted by jmc@
* Update the sosplice(9) man page with UDP socket splicing.bluhm2013-01-171-7/+30
| | | | help and OK jmc@
* various macro fixes;jmc2013-01-172-12/+4
|
* Man page update for the changed semantics of maximum socket splicing.bluhm2013-01-171-11/+33
| | | | | The error EFBIG can be returned to userland now. OK jmc@
* update from Ryan Ozmun;jmc2013-01-031-17/+24
|
* Document bus_space_mmap(9) from NetBSD with some tweaks by jmc@.mpi2012-12-102-3/+42
|
* Mention the BUS_DMA_NOCACHE flag, prodded by oga, reads ok to jmc@mpi2012-12-101-2/+11
|
* sync m_copydata prototype with reality, ok jsg phesslerhenning2012-11-171-3/+3
|
* splimp -> splnet; OK jmc@ claudio@ miod@gsoares2012-11-151-5/+5
| | | | while here switch to .Xr splnet 9; pointed out by jmc@
* replace "err(1, (char *)NULL);" with "err(1, NULL);"jmc2012-11-021-3/+3
| | | | | | from Rafael ok haesbaert ratchov
* adjust wdog_register() signaturederaadt2012-10-171-3/+3
| | | | pointed out by miod
* FRELE() has a second argument nowguenther2012-10-041-3/+3
|
* replace m_zero(9) with M_ZEROIZE; original diff from markusjmc2012-09-272-9/+7
| | | | ok mikeb markus
* Update the route(9) manpage to reflect recent change to rt_lookup()blambert2012-09-191-4/+4
| | | | | | reminded by jmc@ ok jmc@ claudio@
* Rework the description of the flags to pool_get(9)guenther2012-09-171-33/+22
| | | | ok jmc@, tedu@
* document vdrop; original diff from Michal Mazurekjmc2012-09-172-5/+21
| | | | text rewrite/ok guenther
* vaccess' first argument is type; from Michal Mazurekjmc2012-09-161-2/+4
| | | | ok millert
* within Rs/Re reference blocks, use %U instead of %O (or any otherjmc2012-08-181-3/+3
| | | | | | | | | variants) for URLs, allowing mandoc -Thtml to properly generate links; (sendmail.8 changes are simply using Lk, which i somehow missed in previous) ingo reminded me to verify that gnu groff recognises %U: 1.20.1 does not, but 1.21 does;
* link copy.9 to kcopy.9matthew2012-06-211-2/+3
|
* Document kcopy() and add a note that copystr() does not return EFAULTmatthew2012-06-211-2/+23
| | | | | | when it encounters an illegal address. Discussed with deraadt, guenther, and kettenis.
* Remove duplicate description of FORK_TFORKguenther2012-06-131-7/+2
| | | | ok jmc@
* "int (**vops)((void *)" is now "struct vops *vops"; from David Matthew Mattlijmc2012-05-181-3/+3
| | | | ok tedu
* Add strnlen() to libkern.matthew2012-04-262-3/+7
| | | | ok deraadt
* sort SEE ALSO;jmc2012-04-121-2/+2
|
* more rfork mop-upderaadt2012-04-121-6/+6
|
* Recommend using "unsigned int" instead of just "unsigned".ratchov2012-04-111-2/+8
| | | | ok deraadt@, tweaks from jmc@ and todd@
* no more lint;jmc2012-04-081-4/+3
|
* Remove raidframe related references.jsing2012-04-062-13/+6
|
* Consistently use the term "route label" throughout.blambert2011-12-121-6/+6
| | | | Noticed by and ok sthen@
* s/timout/timeoutsthen2011-12-091-2/+2
|
* typo, s/conficts/conflicts/sthen2011-12-091-3/+3
|
* Begin documenting the soup sandwich that is the kernel routing code.blambert2011-12-082-3/+366
| | | | | | Much handholding jmc@ ok jmc@ sthen@ claudio@
* it's MAXMCLBYTES, not MAXCLBYTES.dlg2011-12-021-4/+4
|
* this diff introduces the MAXMCLBYTES macro to describe the largestdlg2011-11-301-6/+7
| | | | | | | | | | | | | | | cluster the generic network stack will be able to give you. it also recognises that external storage on an mbuf may be bigger than MCLBYTES. its only when m_pullup or m_pulldown need to allocate another cluster that they now check the len argument, and now they do it against MAXMCLBYTES. this is required for me to do pfsync on jumbo frames as the m_pulldown for the subregions fail beyond MCLBYTES into the packet. ok deraadt@ mikeb@ henning@ blambert@ manpage changes ok jmc@
* do not Xr non-existent man pages;jmc2011-11-161-3/+3
|
* stacksize argument is gone and replaced with tidptr argumentguenther2011-10-161-15/+25
| | | | | | Document new FORK_TFORK bit and that stack argument is used by compat_linux ok jmc@
* no more ccd(4);jmc2011-10-061-11/+6
|
* Sync with reality: remove %r and %z which have been removed quite some timemiod2011-09-191-20/+32
| | | | ago, and mention %hh, %j and %t are not supported.
* remove mdoc.samples(7): all info already is in mdoc(7)schwarze2011-09-171-4/+4
| | | | feedback and ok jmc@
* make -column lists pretty again;jmc2011-09-031-9/+10
| | | | | | | | | | specifically, rewrite them to permit some markup in the column headers, and use "Ta" instead of literal tabs; mandoc does not currently match groff 100%, but a mandoc fix may be some time off, and we've gone enough releases with poorly formatting column lists. in some cases i have rewritten the lists as -tag, where -column made little sense.
* cred argument was removed from bread() and breadn()shadchin2011-07-311-12/+5
| | | | ok tedu@, jmc@