Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 224544
b: refs/heads/master
c: a417786
h: refs/heads/master
v: v3
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Nov 29, 2010
1 parent b7ead28 commit 0f4082d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b02038a17b271e0f70616c54e4eccb5cc33d1b74
refs/heads/master: a41778694806ac1ccd4b1dafed1abef8d5ba98ac
4 changes: 2 additions & 2 deletions trunk/include/linux/netdevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ struct xps_map {
*/
struct xps_dev_maps {
struct rcu_head rcu;
struct xps_map *cpu_map[0];
struct xps_map __rcu *cpu_map[0];
};
#define XPS_DEV_MAPS_SIZE (sizeof(struct xps_dev_maps) + \
(nr_cpu_ids * sizeof(struct xps_map *)))
Expand Down Expand Up @@ -1049,7 +1049,7 @@ struct net_device {
spinlock_t tx_global_lock;

#ifdef CONFIG_XPS
struct xps_dev_maps *xps_maps;
struct xps_dev_maps __rcu *xps_maps;
#endif

/* These may be needed for future network-power-down code. */
Expand Down
24 changes: 15 additions & 9 deletions trunk/net/core/net-sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,8 @@ static void xps_dev_maps_release(struct rcu_head *rcu)
}

static DEFINE_MUTEX(xps_map_mutex);
#define xmap_dereference(P) \
rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))

static ssize_t store_xps_map(struct netdev_queue *queue,
struct netdev_queue_attribute *attribute,
Expand Down Expand Up @@ -935,11 +937,12 @@ static ssize_t store_xps_map(struct netdev_queue *queue,

mutex_lock(&xps_map_mutex);

dev_maps = dev->xps_maps;
dev_maps = xmap_dereference(dev->xps_maps);

for_each_possible_cpu(cpu) {
new_map = map = dev_maps ? dev_maps->cpu_map[cpu] : NULL;

map = dev_maps ?
xmap_dereference(dev_maps->cpu_map[cpu]) : NULL;
new_map = map;
if (map) {
for (pos = 0; pos < map->len; pos++)
if (map->queues[pos] == index)
Expand Down Expand Up @@ -975,13 +978,14 @@ static ssize_t store_xps_map(struct netdev_queue *queue,
else
new_map = NULL;
}
new_dev_maps->cpu_map[cpu] = new_map;
RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], new_map);
}

/* Cleanup old maps */
for_each_possible_cpu(cpu) {
map = dev_maps ? dev_maps->cpu_map[cpu] : NULL;
if (map && new_dev_maps->cpu_map[cpu] != map)
map = dev_maps ?
xmap_dereference(dev_maps->cpu_map[cpu]) : NULL;
if (map && xmap_dereference(new_dev_maps->cpu_map[cpu]) != map)
call_rcu(&map->rcu, xps_map_release);
if (new_dev_maps->cpu_map[cpu])
nonempty = 1;
Expand All @@ -1007,7 +1011,9 @@ static ssize_t store_xps_map(struct netdev_queue *queue,

if (new_dev_maps)
for_each_possible_cpu(i)
kfree(new_dev_maps->cpu_map[i]);
kfree(rcu_dereference_protected(
new_dev_maps->cpu_map[i],
1));
kfree(new_dev_maps);
free_cpumask_var(mask);
return -ENOMEM;
Expand All @@ -1033,11 +1039,11 @@ static void netdev_queue_release(struct kobject *kobj)
index = get_netdev_queue_index(queue);

mutex_lock(&xps_map_mutex);
dev_maps = dev->xps_maps;
dev_maps = xmap_dereference(dev->xps_maps);

if (dev_maps) {
for_each_possible_cpu(i) {
map = dev_maps->cpu_map[i];
map = xmap_dereference(dev_maps->cpu_map[i]);
if (!map)
continue;

Expand Down

0 comments on commit 0f4082d

Please sign in to comment.