Skip to content

Commit

Permalink
ibmveth: Convert to netdev_alloc_skb
Browse files Browse the repository at this point in the history
We were using alloc_skb which doesn't create any headroom. Change it to
use netdev_alloc_skb to match most other drivers.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Santiago Leon <santil@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Santiago Leon authored and David S. Miller committed Sep 7, 2010
1 parent d2684b5 commit 003212c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ibmveth.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter, struc
for(i = 0; i < count; ++i) {
union ibmveth_buf_desc desc;

skb = alloc_skb(pool->buff_size, GFP_ATOMIC);
skb = netdev_alloc_skb(adapter->netdev, pool->buff_size);

if(!skb) {
ibmveth_debug_printk("replenish: unable to allocate skb\n");
Expand Down

0 comments on commit 003212c

Please sign in to comment.