[PATCH] skge: dont use dev_alloc_skb for rx buffs
The skge driver was using dev_alloc_skb which reserves space for the Ethernet header. This unnecessary and it should just use alloc_skb, also by using GFP_KERNEL during startup it won't run into problems when a user asks for a huge ring size or mtu and potentially drains the reserved atomic pool. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
901ccefb2d
commit
b5d56ddc3f
@ -829,7 +829,7 @@ static int skge_rx_fill(struct skge_port *skge)
|
|||||||
do {
|
do {
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
|
|
||||||
skb = dev_alloc_skb(skge->rx_buf_size + NET_IP_ALIGN);
|
skb = alloc_skb(skge->rx_buf_size + NET_IP_ALIGN, GFP_KERNEL);
|
||||||
if (!skb)
|
if (!skb)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
@ -2592,7 +2592,7 @@ static inline struct sk_buff *skge_rx_get(struct skge_port *skge,
|
|||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
if (len < RX_COPY_THRESHOLD) {
|
if (len < RX_COPY_THRESHOLD) {
|
||||||
skb = dev_alloc_skb(len + 2);
|
skb = alloc_skb(len + 2, GFP_ATOMIC);
|
||||||
if (!skb)
|
if (!skb)
|
||||||
goto resubmit;
|
goto resubmit;
|
||||||
|
|
||||||
@ -2607,7 +2607,7 @@ static inline struct sk_buff *skge_rx_get(struct skge_port *skge,
|
|||||||
skge_rx_reuse(e, skge->rx_buf_size);
|
skge_rx_reuse(e, skge->rx_buf_size);
|
||||||
} else {
|
} else {
|
||||||
struct sk_buff *nskb;
|
struct sk_buff *nskb;
|
||||||
nskb = dev_alloc_skb(skge->rx_buf_size + NET_IP_ALIGN);
|
nskb = alloc_skb(skge->rx_buf_size + NET_IP_ALIGN, GFP_ATOMIC);
|
||||||
if (!nskb)
|
if (!nskb)
|
||||||
goto resubmit;
|
goto resubmit;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user