This patch series implements a means of allocating page fragments without
the need for the local_irq_save/restore in __netdev_alloc_frag. By doing
this I am able to decrease packet processing time by 11ns per packet in my
test environment.
---
Alexander Duyck (3):
net: Split netdev_alloc_frag into __alloc_page_frag and add __napi_alloc_frag
net: Pull out core bits of __netdev_alloc_skb and add __napi_alloc_skb
fm10k/igb/ixgbe: Use napi_alloc_skb
drivers/net/ethernet/intel/fm10k/fm10k_main.c | 4 -
drivers/net/ethernet/intel/igb/igb_main.c | 3
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 4 -
include/linux/skbuff.h | 11 ++
net/core/dev.c | 2
net/core/skbuff.c | 160 ++++++++++++++++++-------
6 files changed, 133 insertions(+), 51 deletions(-)
--