summaryrefslogtreecommitdiff
path: root/share/man/man9
AgeCommit message (Collapse)Author
2014-04-14"struct pkthdr" holds a routing table ID, not a routing domain one.Martin Pieuchot
Avoid the confusion by using an appropriate name for the variable. Note that since routing domain IDs are a subset of the set of routing table IDs, the following idiom is correct: rtableid = rdomain But to get the routing domain ID corresponding to a given routing table ID, you must call rtable_l2(9). claudio@ likes it, ok mikeb@
2014-04-10Retire rtinit() an use rt_ifa_add(9) and rt_ifa_del(9) to manageMartin Pieuchot
connected routes to prefixes/hosts. Since the introduction of rt_ifa_addloop(9) and rt_ifa_delloop(9), rtinit() was just a wrapper, so use the underlying functions directly and document them. Inputs from and ok mikeb@, manpage tweaks from jmc@
2014-04-03Sync malloc(9) M_* types with sys/malloc.hLawrence Teo
2014-04-03lies lies lies lies liesTed Unangst
2014-04-02Add missing "SEE ALSO" header.Martin Pieuchot
2014-04-02Add a man page for rtrequest1(9) splitted from route(9) with someMartin Pieuchot
improvements. ok sthen@
2014-03-27tweak previous; help/ok mpiJason McIntyre
2014-03-27Store an ifp index instead of a pointer in the "struct mbuf_ext".Martin Pieuchot
This is part of the plan to remove the ifp pointer from the packet header that will allow us to stop garbage collecting mbuf(9)s when an ifp is detached/destroyed. ok mikeb@, lteo@, benno@
2014-03-27tweak previous; help/ok dlgJason McIntyre
2014-03-26Add a CONTEXT section.Martin Pieuchot
2014-03-26Add a CONTEXT section.Martin Pieuchot
2014-03-26Add a CONTEXT section, requested by dlg@Martin Pieuchot
2014-03-26CONTEXT for malloc.David Gwynne
feels a bit clumsy, hopefully jmc can help.
2014-03-21zap trailing whitespace;Jason McIntyre
2014-03-21rt_timer* spring cleanup.Martin Pieuchot
Rename and document rt_timer_count() into rt_timer_queue_count() to be consistent with the other functions. Remove unused argument from rt_timer_queue_destroy(), clean the definitions and finally use the same order in NAME and DESCRIPTION as requested by jmc@. ok henning@
2014-03-19Stop abusing the rcvif pointer to pass wireless nodes down to theMartin Pieuchot
driver start routines. Instead add & use a pointer in the pkthdr since we don't want the overhead of using a mbuf_tags(9). claudio@ pointed out that other subsystems might want to use this pointer too, so here's a new cookie! ok claudio@, mikeb@, deraadt@
2014-03-18Fix rtlabel_id2name() SYNOPSIS, requested by jmc@.Martin Pieuchot
2014-03-18zap trailing whitespace;Jason McIntyre
2014-03-18typo, pointed by millert@Martin Pieuchot
2014-03-18Rename rt_gettable() into rtable_get(), swap its arguments to beMartin Pieuchot
coherent with the existing rtable_* functions and document it. While here fix some other manpage glitches pointed out by jmc@.
2014-03-18Split route(9) into various manuals to make it easier to complete/improveMartin Pieuchot
its content. With inputs from jmc@ and schwarze@
2014-03-14tweak previous;Jason McIntyre
2014-03-14provide an MI api for doing byteswapping loads and stores. someDavid Gwynne
archs have instrutions that can do this, and the rest that dont get to use wrappers around the byteswap(3) api. this provides MI backends for sparc64 and powerpc which get a big benefit from this because byteswapping in registers is really hard for them. the intended use case is for reading and writing bits of dma memory handed to and from hardware. discussed with miod@ guenther@ deraadt@ ok miod@ kettenis@
2014-02-14remove the caveat apologising that you cant use rwlocks in interruptDavid Gwynne
handlers now that context explains that you can only use them in autoconf or process context.
2014-02-14CONTEXTDavid Gwynne
2014-02-14CONTEXTDavid Gwynne
2014-02-13update SEE ALSO;Jason McIntyre
2014-02-13lowercase non-capital;Jason McIntyre
2014-02-13revery -r1.34's addition of spl(9) to SEE ALSO: we already have splclock(9)Jason McIntyre
in there, and they're one and the same page;
2014-02-13use the return values section to document return valuesDavid Gwynne
2014-02-13explicitely document the contexts you can call mutex functions in.David Gwynne
2014-02-13wrap long linesDavid Gwynne
2014-02-13this wasnt supposed to be part of the timeout.9 changeDavid Gwynne
2014-02-13document the timeout_add and timeout_del return values in the RETURN VALUESDavid Gwynne
section. im not sure what to do with the macros yet.
2014-02-13document the contexts you can call this api from out into its own sectionDavid Gwynne
2014-02-13make a sentence betterDavid Gwynne
2014-02-13add CONTEXTDavid Gwynne
these can all be called during autoconf, in process context, or from interrupts.
2014-02-13document return values in the RETURN VALUES section.David Gwynne
ingo@ suggested putting RETURN VALUES after CONTEXT, and i agree. this seems to flow well.
2014-02-13introduce a CONTEXT section that describes where you can call the bits ofDavid Gwynne
the API from. task_add is the first manpage to get this, but hopefully not the last. inspired by the CONTEXT section in solaris, and introduced here with the blessing of deraadt@, jmc@, and ingo@. discussed with jmc@ and ingo@
2014-02-12fork1's exitsig argument just vanished (mwuhahahaha)Philip Guenther
2014-02-09MLINK extent_alloc_with_descr;Jason McIntyre
2014-02-08Add extent_alloc_with_descr(9) as a wrapper aroundMark Kettenis
extent_alloc_subregion_with_descr(9) mirroring extent_alloc(9). ok jmc@
2014-02-04better history.David Gwynne
2014-02-04atomic.9 doesnt exist to Xr to now.David Gwynne
2014-02-04rename atomic.9 to atomic_setbits_int.9 since the former isn't a functionDavid Gwynne
you can call. discussed briefly with jmc@ who i might have misinterpreted.
2014-02-04fix Dt lines so they match the page name.David Gwynne
reminded by jmc@
2014-02-03rename the atomic_foo manpages to atomic_foo_int or _uint cos we name theseDavid Gwynne
after functions. for reasons. reminded by jmc@
2014-02-03rename membar.9 to membar_sync.9 because manpages have to be named afterDavid Gwynne
functions FOR REASONS. reminded by jmc@
2014-01-30markus hennecke points out i had a trailing slash on a line thatDavid Gwynne
shouldnt have one
2014-01-30tweak previous;Jason McIntyre