summaryrefslogtreecommitdiffstats
path: root/include/net/garp.h
diff options
context:
space:
mode:
authorEric Dumazet2011-05-12 23:46:56 +0200
committerDavid S. Miller2011-05-12 23:46:56 +0200
commitf607a158004d75c9005423ce1ba70dc6ec3dd9c2 (patch)
tree87932db617f445111cb72f5fa0d8f4eaecc91b45 /include/net/garp.h
parentvmxnet3: Use single tx queue when CONFIG_PCI_MSI not defined (diff)
downloadkernel-qcow2-linux-f607a158004d75c9005423ce1ba70dc6ec3dd9c2.tar.gz
kernel-qcow2-linux-f607a158004d75c9005423ce1ba70dc6ec3dd9c2.tar.xz
kernel-qcow2-linux-f607a158004d75c9005423ce1ba70dc6ec3dd9c2.zip
garp: remove last synchronize_rcu() call
When removing last vlan from a device, garp_uninit_applicant() calls synchronize_rcu() to make sure no user can still manipulate struct garp_applicant before we free it. Use call_rcu() instead, as a step to further net_device dismantle optimizations. Add the temporary garp_cleanup_module() function to make sure no pending call_rcu() are left at module unload time [ this will be removed when kfree_rcu() is available ] Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/garp.h')
-rw-r--r--include/net/garp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/garp.h b/include/net/garp.h
index 8cabbf087169..834d8add9e5f 100644
--- a/include/net/garp.h
+++ b/include/net/garp.h
@@ -104,6 +104,7 @@ struct garp_applicant {
struct sk_buff_head queue;
struct sk_buff *pdu;
struct rb_root gid;
+ struct rcu_head rcu;
};
struct garp_port {