diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-11-29 11:14:37 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-12-01 23:47:42 +0300 |
commit | f2cd2d3e9b3ef960612e362f0ad129d735452df2 (patch) | |
tree | bef1868cfc7dc66de7b2430a4b47b12bced05ec1 /net/core/dev.c | |
parent | 0793f83f0ec2142d06abe53570417c8d95e0310a (diff) | |
download | linux-f2cd2d3e9b3ef960612e362f0ad129d735452df2.tar.xz |
net sched: use xps information for qdisc NUMA affinity
Allocate qdisc memory according to NUMA properties of cpus included in
xps map.
To be effective, qdisc should be (re)setup after changes
of /sys/class/net/eth<n>/queues/tx-<n>/xps_cpus
I added a numa_node field in struct netdev_queue, containing NUMA node
if all cpus included in xps_cpus share same node, else -1.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Ben Hutchings <bhutchings@solarflare.com>
Cc: Tom Herbert <therbert@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/dev.c')
-rw-r--r-- | net/core/dev.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 3259d2c323a6..cd2437495428 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -5125,9 +5125,10 @@ static int netif_alloc_netdev_queues(struct net_device *dev) } dev->_tx = tx; - for (i = 0; i < count; i++) + for (i = 0; i < count; i++) { + netdev_queue_numa_node_write(&tx[i], -1); tx[i].dev = dev; - + } return 0; } |