summaryrefslogtreecommitdiffstats
path: root/share/man/man9/mbuf.9
Commit message (Collapse)AuthorAgeFilesLines
* Document the functions m_apply() and m_getptr().bms2004-02-111-0/+42
| | | | Requested by: Maxim Konovalov
* Fix MSIZE definition location.ale2004-02-011-2/+2
| | | | | | | PR: docs/62129 Submitted by: Lee Brotherston <lee@nerds.org.uk> (PR), Marc Silver <marcs@draenor.org> (patch) Approved by: blackend (mentor)
* As I've been pointed out by Andrew Gallatin, there are someyar2004-01-211-4/+12
| | | | | | network interface cards smart (or twisted?) enough to be able to calculate a TCP/UDP checksum for a packet fragmented by the host CPU. Therefore the paragraph on the case has been revised.
* A couple of minor clarifications.yar2004-01-211-4/+4
|
* Add a description for the hardware-assisted checksummingyar2004-01-211-0/+166
| | | | | facilities based on http://people.freebsd.org/~jlemon/csum.txt and my own observations.
* Reformat the list of essential mbuf fields accordingyar2004-01-181-10/+17
| | | | | | | to the nice style used in ifnet(9). This includes specifying field types, starting descriptions with a capital letter, and ending them with a full stop. Improve the language a bit, as well.
* Update the list of mbuf types from <sys/mbuf.h>.yar2004-01-181-1/+1
|
* Update the list of possible mbuf flags from <sys/mbuf.h>.yar2004-01-181-1/+3
|
* Remove an extra 'for' in the HISTORY section.trhodes2003-11-151-1/+1
|
* mdoc(7): Properly mark C headers.ru2003-09-101-1/+1
|
* Name a function argument "mbuf", not "buf", if it isyar2003-06-151-2/+2
| | | | a pointer to struct mbuf for clarity and consistency.
* Add missing descriptions of macros M_ALIGN and MH_ALIGN.yar2003-06-151-1/+89
| | | | | | Remove a reference to the defunct macro M_COPY_PKTHDR; document the new functions m_dup_pkthdr() and m_move_pkthdr(), and the macro variant of the latter, M_MOVE_PKTHDR().
* Add more markup to the mbuf(9) manpage. This includes:yar2003-06-151-92/+239
| | | | | | | | | | | | | - tagging plaintext "mbuf", "mbuf cluster", and "mbuf chain" with .Vt (variable type) since all of them are ways of managing data, i.e., they can be seen as data types; - using .Vt/.Va instead of .Li (literal) where appropriate; - tagging plaintext words that actually refer to function arguments with .Fa. Suggested by: ru
* Use .Va, not .Fa, to refer to structure members.yar2003-06-151-8/+8
| | | | | | | mdoc(7) contains an ambiguous statement on the issue, but our mdoc(7) police's opinion is solid. Suggested by: ru
* Assorted mdoc(7), grammar, spelling, and punctuation fixes.ru2003-05-211-11/+21
| | | | Approved by: re (blanket)
* Remove an extraneous `.El' that was reported by `groff -z`.hmp2003-05-161-1/+0
| | | | Approved by: des (mentor), re (scottl)
* Add a description of m_defragrandomfailures.silby2003-04-151-0/+4
|
* Add info on how to use the MBUF_STRESS_TEST options. (Only 1 optionsilby2003-04-131-0/+11
| | | | at present.)
* Return bits which were removed in revision 1.22.trhodes2003-02-241-3/+11
| | | | Requested by: imp
* Catch up to WAIT/NOWAIT cleanup.alfred2003-01-211-11/+3
|
* Caution programmers not to confuse M_DONTWAIT with M_NOWAIT. Theyrwatson2003-01-181-0/+8
| | | | | | are not the same. Suggested by: Hiten Pandya <hiten@unixdaemons.com>
* mdoc(7) police: catch up to the code changes.ru2002-11-291-2/+2
| | | | Approved by: re
* Add m_fixhdr() and m_length().phk2002-09-181-0/+10
|
* Update function definitions and required include files to reflectdavidc2001-12-261-1/+7
| | | | | | the current state of the system. Approved by: alfred
* Fixed bitrot in synopsis. Const'ification of m_copydata() had not reachedbde2001-10-041-1/+1
| | | | here.
* mdoc(7) police: Use the new .In macro for #include statements.ru2001-10-011-2/+2
|
* mdoc(7) police: s/BSD/.Bx/ where appropriate.ru2001-08-141-1/+2
|
* mdoc(7) police: expand plain text xrefs.ru2001-08-081-1/+3
|
* mdoc(7) police:ru2001-08-071-7/+5
| | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block.
* Removed whitespace at end-of-line; no content changes. I simply didschweikh2001-07-141-11/+11
| | | | | | | | | | cd src/share; find man[1-9] -type f|xargs perl -pi -e 's/[ \t]+$//' BTW, what editors are the culprits? I'm using vim and it shows me whitespace at EOL in troff files with a thick blue block... Reviewed by: Silence from cvs diff -b MFC after: 7 days
* mdoc(7) police: sanitize previous revision changes.ru2001-02-161-8/+11
|
* Document recently-implemented m_getm().bmilekic2001-02-161-0/+22
|
* Fixed missing and/or wrong and/or extra includes in synopsis.bde2001-02-151-1/+1
|
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-2/+3
|
* Prepare for mdoc(7)NG.ru2000-12-291-0/+1
|
* Change M_WAIT to M_TRYWAIT, the new name of the flag.bmilekic2000-12-241-2/+2
|
* Add description of M_WRITABLE macro and new M_RDONLY flag. Try my best tobmilekic2000-11-211-11/+33
| | | | | | conform to line break mdoc FreeBSD standards, although I am new to this. Reviewed by: sheldonh
* Miscellaneous content fixes:sheldonh2000-11-101-12/+18
| | | | | | | | | * xref sysctl * do not mark kern.ipc.mbuf_wait up as a function argument. * do not mix case of function argument names * a mbuf -> an mbuf * if -> whether * typos
* Whitespace only: fix hard sentence breaks now, before people reallysheldonh2000-11-101-29/+42
| | | | get stuck into this page.
* Fixup some wrong statements in the new mbuf(9) man page.bmilekic2000-11-011-63/+100
| | | | | | | | Also introduce a bunch of (missed?) macros and functions. This man page still needs a lot of work, most likely a re-ordering of the macros/functions, and a more complete, more accurate, listing of available routines. A good and worthy start nonetheless.
* Add a prototype mbuf.9 man page. Probably needs work, but it's a goodnik2000-10-261-0/+407
start. PR: docs/22053 Submitted by: Yar Tikhiy <yar@comp.chem.msu.su>
OpenPOWER on IntegriCloud