spidernet: node-aware skbuff allocation
Spidernet was the driver I original did all the node-aware netdevice allocation for, but after a year it still hasn't hit mainline. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Linas Vepstas <linas@austin.ibm.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
3b6330ce2a
commit
98739407c5
1 changed files with 2 additions and 1 deletions
|
@ -430,7 +430,8 @@ spider_net_prepare_rx_descr(struct spider_net_card *card,
|
||||||
/* and we need to have it 128 byte aligned, therefore we allocate a
|
/* and we need to have it 128 byte aligned, therefore we allocate a
|
||||||
* bit more */
|
* bit more */
|
||||||
/* allocate an skb */
|
/* allocate an skb */
|
||||||
descr->skb = dev_alloc_skb(bufsize + SPIDER_NET_RXBUF_ALIGN - 1);
|
descr->skb = netdev_alloc_skb(card->netdev,
|
||||||
|
bufsize + SPIDER_NET_RXBUF_ALIGN - 1);
|
||||||
if (!descr->skb) {
|
if (!descr->skb) {
|
||||||
if (netif_msg_rx_err(card) && net_ratelimit())
|
if (netif_msg_rx_err(card) && net_ratelimit())
|
||||||
pr_err("Not enough memory to allocate rx buffer\n");
|
pr_err("Not enough memory to allocate rx buffer\n");
|
||||||
|
|
Loading…
Add table
Reference in a new issue