aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/core/net-sysfs.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c
index 99c11294623f..35ef42fa0cf3 100644
--- a/net/core/net-sysfs.c
+++ b/net/core/net-sysfs.c
@@ -956,8 +956,9 @@ static ssize_t store_xps_map(struct netdev_queue *queue,
956 if (map_len >= alloc_len) { 956 if (map_len >= alloc_len) {
957 alloc_len = alloc_len ? 957 alloc_len = alloc_len ?
958 2 * alloc_len : XPS_MIN_MAP_ALLOC; 958 2 * alloc_len : XPS_MIN_MAP_ALLOC;
959 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), 959 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len),
960 GFP_KERNEL); 960 GFP_KERNEL,
961 cpu_to_node(cpu));
961 if (!new_map) 962 if (!new_map)
962 goto error; 963 goto error;
963 new_map->alloc_len = alloc_len; 964 new_map->alloc_len = alloc_len;