diff options
author | Lai Jiangshan <laijs@cn.fujitsu.com> | 2011-03-18 00:02:20 -0400 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2011-05-08 01:51:03 -0400 |
commit | edc86d8a1c824cca1df676f47fc713232885561f (patch) | |
tree | b7262fb7044fa9847b8bb2453aac89d175602e01 | |
parent | f6f80238fab1ad19c44b4a12501528d50fc7fcd6 (diff) |
net,rcu: convert call_rcu(xps_map_release) to kfree_rcu()
The rcu callback xps_map_release() just calls a kfree(),
so we use kfree_rcu() instead of the call_rcu(xps_map_release).
Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
-rw-r--r-- | net/core/net-sysfs.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c index c410f2854c89..48ffc216c86f 100644 --- a/net/core/net-sysfs.c +++ b/net/core/net-sysfs.c | |||
@@ -891,13 +891,6 @@ static ssize_t show_xps_map(struct netdev_queue *queue, | |||
891 | return len; | 891 | return len; |
892 | } | 892 | } |
893 | 893 | ||
894 | static void xps_map_release(struct rcu_head *rcu) | ||
895 | { | ||
896 | struct xps_map *map = container_of(rcu, struct xps_map, rcu); | ||
897 | |||
898 | kfree(map); | ||
899 | } | ||
900 | |||
901 | static void xps_dev_maps_release(struct rcu_head *rcu) | 894 | static void xps_dev_maps_release(struct rcu_head *rcu) |
902 | { | 895 | { |
903 | struct xps_dev_maps *dev_maps = | 896 | struct xps_dev_maps *dev_maps = |
@@ -1002,7 +995,7 @@ static ssize_t store_xps_map(struct netdev_queue *queue, | |||
1002 | map = dev_maps ? | 995 | map = dev_maps ? |
1003 | xmap_dereference(dev_maps->cpu_map[cpu]) : NULL; | 996 | xmap_dereference(dev_maps->cpu_map[cpu]) : NULL; |
1004 | if (map && xmap_dereference(new_dev_maps->cpu_map[cpu]) != map) | 997 | if (map && xmap_dereference(new_dev_maps->cpu_map[cpu]) != map) |
1005 | call_rcu(&map->rcu, xps_map_release); | 998 | kfree_rcu(map, rcu); |
1006 | if (new_dev_maps->cpu_map[cpu]) | 999 | if (new_dev_maps->cpu_map[cpu]) |
1007 | nonempty = 1; | 1000 | nonempty = 1; |
1008 | } | 1001 | } |
@@ -1077,7 +1070,7 @@ static void netdev_queue_release(struct kobject *kobj) | |||
1077 | else { | 1070 | else { |
1078 | RCU_INIT_POINTER(dev_maps->cpu_map[i], | 1071 | RCU_INIT_POINTER(dev_maps->cpu_map[i], |
1079 | NULL); | 1072 | NULL); |
1080 | call_rcu(&map->rcu, xps_map_release); | 1073 | kfree_rcu(map, rcu); |
1081 | map = NULL; | 1074 | map = NULL; |
1082 | } | 1075 | } |
1083 | } | 1076 | } |