mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 06:37:59 +00:00
net: introduce __netdev_alloc_skb_ip_align
RX rings should use GFP_KERNEL allocations if possible, add __netdev_alloc_skb_ip_align() helper to ease this. Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
039f02ebd9
commit
4915a0de43
1 changed files with 9 additions and 3 deletions
|
@ -1579,16 +1579,22 @@ static inline struct sk_buff *netdev_alloc_skb(struct net_device *dev,
|
||||||
return __netdev_alloc_skb(dev, length, GFP_ATOMIC);
|
return __netdev_alloc_skb(dev, length, GFP_ATOMIC);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct sk_buff *netdev_alloc_skb_ip_align(struct net_device *dev,
|
static inline struct sk_buff *__netdev_alloc_skb_ip_align(struct net_device *dev,
|
||||||
unsigned int length)
|
unsigned int length, gfp_t gfp)
|
||||||
{
|
{
|
||||||
struct sk_buff *skb = netdev_alloc_skb(dev, length + NET_IP_ALIGN);
|
struct sk_buff *skb = __netdev_alloc_skb(dev, length + NET_IP_ALIGN, gfp);
|
||||||
|
|
||||||
if (NET_IP_ALIGN && skb)
|
if (NET_IP_ALIGN && skb)
|
||||||
skb_reserve(skb, NET_IP_ALIGN);
|
skb_reserve(skb, NET_IP_ALIGN);
|
||||||
return skb;
|
return skb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline struct sk_buff *netdev_alloc_skb_ip_align(struct net_device *dev,
|
||||||
|
unsigned int length)
|
||||||
|
{
|
||||||
|
return __netdev_alloc_skb_ip_align(dev, length, GFP_ATOMIC);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* __netdev_alloc_page - allocate a page for ps-rx on a specific device
|
* __netdev_alloc_page - allocate a page for ps-rx on a specific device
|
||||||
* @dev: network device to receive on
|
* @dev: network device to receive on
|
||||||
|
|
Loading…
Add table
Reference in a new issue