From: Pan Jiafei <Jiafei.Pan@xxxxxxxxxxxxx> Date: Wed, 15 Oct 2014 11:26:11 +0800 > In some platform, there are some hardware block provided > to manage buffers to improve performance. So in some case, > it is expected that the packets received by some generic > NIC should be put into such hardware managed buffers > directly, so that such buffer can be released by hardware > or by driver. > > This patch provide such general APIs for generic NIC to > use hardware block managed buffers without any modification > for generic NIC drivers. Why are existing interfaces insufficent for your needs? Several ethernet drivers already build SKBs from block buffer pools. They allocate pools of pages which the hardware divides into various powers of 2, then the RX descriptor says what pieces of which pools were used to hold the data for a packet, and then the SKB is constructed with page frags pointing to those locations. It's very cheap, inexpensive, and existing APIs are considered to cover all use cases. -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html