aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/libmbpool
Commit message (Collapse)AuthorAgeFilesLines
* Remove mbpool(9) now that it has no consumers.Brooks Davis2017-10-181-19/+0
| | | | | | | | | | | | mbpool existed to support NICs with memory interfaces and all remaining comsumers were removed earlier this year with NATM. Reviewed by: jhb Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D10513 Notes: svn path=/head/; revision=324710
* sys/modules: normalize .CURDIR-relative paths to SRCTOPEnji Cooper2017-03-041-1/+1
| | | | | | | | | | | This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314651
* Add a facility for devices, specifically network interfaces, that requireHartmut Brandt2003-07-151-0/+19
large to huge amounts of small or medium sized receive buffers. The problem with these situations is that they eat up the available DMA address space very quickly when using mbufs or even mbuf clusters. Additionally this facility provides a direct mapping between 32-bit integers and these buffers. This is needed for devices originally designed for 32-bit systems. Ususally the virtual address of the buffer is used as a handle to find the buffer as soon as it is returned by the card. This does not work for 64-bit machines and hence this mapping is needed. Notes: svn path=/head/; revision=117624