cxgb4: Use the node info to alloc_ring() for RX queues
authorHariprasad Shenai <hariprasad@chelsio.com>
Wed, 23 Dec 2015 05:59:55 +0000 (11:29 +0530)
committerDavid S. Miller <davem@davemloft.net>
Wed, 23 Dec 2015 17:05:52 +0000 (12:05 -0500)
Signed-off-by: Hariprasad Shenai <hariprasad@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb4/sge.c

index 0333435..138be46 100644 (file)
@@ -2555,7 +2555,8 @@ int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq,
        iq->size = roundup(iq->size, 16);
 
        iq->desc = alloc_ring(adap->pdev_dev, iq->size, iq->iqe_len, 0,
-                             &iq->phys_addr, NULL, 0, NUMA_NO_NODE);
+                             &iq->phys_addr, NULL, 0,
+                             dev_to_node(adap->pdev_dev));
        if (!iq->desc)
                return -ENOMEM;
 
@@ -2595,7 +2596,8 @@ int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq,
                fl->size = roundup(fl->size, 8);
                fl->desc = alloc_ring(adap->pdev_dev, fl->size, sizeof(__be64),
                                      sizeof(struct rx_sw_desc), &fl->addr,
-                                     &fl->sdesc, s->stat_len, NUMA_NO_NODE);
+                                     &fl->sdesc, s->stat_len,
+                                     dev_to_node(adap->pdev_dev));
                if (!fl->desc)
                        goto fl_nomem;