From: Jesper Dangaard Brouer <hawk@comx.dk>
To: "David S. Miller" <davem@davemloft.net>
Cc: Jesper Dangaard Brouer <hawk@comx.dk>,
"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
urs.thuermann@volkswagen.de, oliver.hartkopp@volkswagen.de,
wg@grandegger.com, vladislav.yasevich@hp.com, sri@us.ibm.com,
linux-sctp@vger.kernel.org, Trond.Myklebust@netapp.com,
linux-nfs@vger.kernel.org, netfilter-devel@vger.kernel.org
Subject: [PATCH 0/5] We must use rcu_barrier() on module unload
Date: Mon, 08 Jun 2009 15:11:23 +0200 [thread overview]
Message-ID: <20090608130959.10052.54590.stgit@localhost> (raw)
If an unloadable module uses RCU callbacks, it need to use
rcu_barrier() so that the module may be safely unloaded.
While hacking on a netfilter module of my own, I learned the
importance of calling rcu_barrier() instead of only a
synchronize_rcu() on module unload (iif using any call_rcu()
callbacks). synchronize_rcu() does wait for a grace period to
elapse, but it does not wait for the callbacks to complete.
For documentation see:
http://lwn.net/Articles/217484/
Documentation/RCU/rcubarrier.txt
Looking through the net/ directory for call_rcu() users and unloadable
modules I found 5 modules that didn't behave correctly:
net/8021q/vlan.c
net/can/af_can.c
net/netfilter/nfnetlink_queue.c
net/sctp/protocol.c
net/sunrpc/auth_gss/auth_gss.c
I have made a patch for each individual module, so objections can be
made on a per module basis. I have Cc'ed all of the patches to the
maintainers of each module (according to the MAINTAINERS file).
The patchset is made on top of DaveM's net-next-2.6 tree (starting on
top of commit a1c1db392090). As this is my usual development tree,
even though this patchset is bugfixes. (Just tested it applied cleanly
on Linus'es tree ...)
---
Jesper Dangaard Brouer (5):
sunrpc/auth_gss: Call rcu_barrier() on module unload.
sctp: protocol.c call rcu_barrier() on unload.
can: af_can.c use rcu_barrier() on module unload.
nfnetlink_queue: Use rcu_barrier() on module unload.
8021q: Vlan driver should use rcu_barrier() on unload instead of syncronize_net()
net/8021q/vlan.c | 2 +-
net/can/af_can.c | 2 ++
net/netfilter/nfnetlink_queue.c | 4 +++-
net/sctp/protocol.c | 2 ++
net/sunrpc/auth_gss/auth_gss.c | 1 +
5 files changed, 9 insertions(+), 2 deletions(-)
--
Best regards,
Jesper Brouer
ComX Networks A/S
Linux Network developer
Cand. Scient Datalog / MSc.
Author of http://adsl-optimizer.dk
LinkedIn: http://www.linkedin.com/in/brouer
WARNING: multiple messages have this Message-ID (diff)
From: Jesper Dangaard Brouer <hawk@comx.dk>
To: "David S. Miller" <davem@davemloft.net>
Cc: Jesper Dangaard Brouer <hawk@comx.dk>,
"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
urs.thuermann@volkswagen.de, oliver.hartkopp@volkswagen.de,
wg@grandegger.com, vladislav.yasevich@hp.com, sri@us.ibm.com,
linux-sctp@vger.kernel.org, Trond.Myklebust@netapp.com,
linux-nfs@vger.kernel.org, netfilter-devel@vger.kernel.org
Subject: [PATCH 0/5] We must use rcu_barrier() on module unload
Date: Mon, 08 Jun 2009 13:11:23 +0000 [thread overview]
Message-ID: <20090608130959.10052.54590.stgit@localhost> (raw)
If an unloadable module uses RCU callbacks, it need to use
rcu_barrier() so that the module may be safely unloaded.
While hacking on a netfilter module of my own, I learned the
importance of calling rcu_barrier() instead of only a
synchronize_rcu() on module unload (iif using any call_rcu()
callbacks). synchronize_rcu() does wait for a grace period to
elapse, but it does not wait for the callbacks to complete.
For documentation see:
http://lwn.net/Articles/217484/
Documentation/RCU/rcubarrier.txt
Looking through the net/ directory for call_rcu() users and unloadable
modules I found 5 modules that didn't behave correctly:
net/8021q/vlan.c
net/can/af_can.c
net/netfilter/nfnetlink_queue.c
net/sctp/protocol.c
net/sunrpc/auth_gss/auth_gss.c
I have made a patch for each individual module, so objections can be
made on a per module basis. I have Cc'ed all of the patches to the
maintainers of each module (according to the MAINTAINERS file).
The patchset is made on top of DaveM's net-next-2.6 tree (starting on
top of commit a1c1db392090). As this is my usual development tree,
even though this patchset is bugfixes. (Just tested it applied cleanly
on Linus'es tree ...)
---
Jesper Dangaard Brouer (5):
sunrpc/auth_gss: Call rcu_barrier() on module unload.
sctp: protocol.c call rcu_barrier() on unload.
can: af_can.c use rcu_barrier() on module unload.
nfnetlink_queue: Use rcu_barrier() on module unload.
8021q: Vlan driver should use rcu_barrier() on unload instead of syncronize_net()
net/8021q/vlan.c | 2 +-
net/can/af_can.c | 2 ++
net/netfilter/nfnetlink_queue.c | 4 +++-
net/sctp/protocol.c | 2 ++
net/sunrpc/auth_gss/auth_gss.c | 1 +
5 files changed, 9 insertions(+), 2 deletions(-)
--
Best regards,
Jesper Brouer
ComX Networks A/S
Linux Network developer
Cand. Scient Datalog / MSc.
Author of http://adsl-optimizer.dk
LinkedIn: http://www.linkedin.com/in/brouer
next reply other threads:[~2009-06-08 13:11 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-08 13:11 Jesper Dangaard Brouer [this message]
2009-06-08 13:11 ` [PATCH 0/5] We must use rcu_barrier() on module unload Jesper Dangaard Brouer
2009-06-08 13:11 ` [PATCH 1/5] 8021q: Vlan driver should use rcu_barrier() on unload instead of syncronize_net() Jesper Dangaard Brouer
2009-06-08 13:11 ` [PATCH 1/5] 8021q: Vlan driver should use rcu_barrier() on unload Jesper Dangaard Brouer
2009-06-08 15:54 ` [PATCH 1/5] 8021q: Vlan driver should use rcu_barrier() on unload instead of syncronize_net() Paul E. McKenney
2009-06-08 15:54 ` [PATCH 1/5] 8021q: Vlan driver should use rcu_barrier() on Paul E. McKenney
2009-06-08 13:11 ` [PATCH 2/5] nfnetlink_queue: Use rcu_barrier() on module unload Jesper Dangaard Brouer
2009-06-08 13:11 ` Jesper Dangaard Brouer
2009-06-08 16:05 ` Paul E. McKenney
2009-06-08 16:05 ` Paul E. McKenney
2009-06-08 16:05 ` Paul E. McKenney
2009-06-08 16:05 ` [PATCH 2/5] nfnetlink_queue: Use rcu_barrier() on module Paul E. McKenney
2009-06-10 5:38 ` [PATCH 2/5] nfnetlink_queue: Use rcu_barrier() on module unload Andrew Morton
2009-06-10 5:38 ` [PATCH 2/5] nfnetlink_queue: Use rcu_barrier() on module Andrew Morton
2009-06-08 13:11 ` [PATCH 3/5] can: af_can.c use rcu_barrier() on module unload Jesper Dangaard Brouer
2009-06-08 13:11 ` Jesper Dangaard Brouer
2009-06-08 13:24 ` Oliver Hartkopp
2009-06-08 13:24 ` Oliver Hartkopp
2009-06-10 8:10 ` David Miller
2009-06-10 8:10 ` David Miller
2009-06-10 8:22 ` Oliver Hartkopp
2009-06-10 8:52 ` David Miller
2009-06-10 12:41 ` Jeremy Kerr
2009-06-10 12:41 ` Jeremy Kerr
2009-06-10 16:45 ` David Miller
2009-06-10 16:45 ` David Miller
2009-06-10 10:02 ` Alan Cox
2009-06-10 10:02 ` Alan Cox
2009-06-10 11:33 ` Jan Engelhardt
2009-06-10 11:33 ` Jan Engelhardt
2009-06-08 16:13 ` Paul E. McKenney
2009-06-08 16:13 ` Paul E. McKenney
2009-06-08 17:00 ` Oliver Hartkopp
2009-06-08 17:00 ` Oliver Hartkopp
2009-06-08 13:11 ` [PATCH 4/5] sctp: protocol.c call rcu_barrier() on unload Jesper Dangaard Brouer
2009-06-08 13:11 ` Jesper Dangaard Brouer
2009-06-08 16:22 ` Paul E. McKenney
2009-06-08 16:22 ` Paul E. McKenney
2009-06-09 15:44 ` Vlad Yasevich
2009-06-09 15:44 ` Vlad Yasevich
2009-06-09 15:50 ` Paul E. McKenney
2009-06-09 15:50 ` Paul E. McKenney
2009-06-09 16:26 ` Vlad Yasevich
2009-06-09 16:26 ` Vlad Yasevich
2009-06-09 16:26 ` Vlad Yasevich
2009-06-09 16:26 ` Vlad Yasevich
2009-06-08 13:11 ` [PATCH 5/5] sunrpc/auth_gss: Call rcu_barrier() on module unload Jesper Dangaard Brouer
2009-06-08 13:11 ` Jesper Dangaard Brouer
2009-06-08 16:26 ` Paul E. McKenney
2009-06-08 16:26 ` [PATCH 5/5] sunrpc/auth_gss: Call rcu_barrier() on module Paul E. McKenney
2009-06-08 17:00 ` [PATCH 5/5] sunrpc/auth_gss: Call rcu_barrier() on module unload Trond Myklebust
2009-06-08 17:00 ` Trond Myklebust
2009-06-08 17:00 ` Trond Myklebust
2009-06-08 17:00 ` [PATCH 5/5] sunrpc/auth_gss: Call rcu_barrier() on module Trond Myklebust
[not found] ` <1244480449.5040.4.camel-rJ7iovZKK19ZJLDQqaL3InhyD016LWXt@public.gmane.org>
2009-06-08 19:48 ` [PATCH 5/5] sunrpc/auth_gss: Call rcu_barrier() on module unload Jesper Dangaard Brouer
2009-06-08 19:48 ` Jesper Dangaard Brouer
2009-06-08 19:48 ` Jesper Dangaard Brouer
2009-06-08 19:48 ` Jesper Dangaard Brouer
2009-06-08 21:13 ` [PATCH 5/5] sunrpc/auth_gss: Call rcu_barrier() on module Paul E. McKenney
2009-06-08 21:13 ` [PATCH 5/5] sunrpc/auth_gss: Call rcu_barrier() on module unload Paul E. McKenney
2009-06-08 14:00 ` [PATCH 0/5] We must use " Patrick McHardy
2009-06-08 14:00 ` Patrick McHardy
2009-06-10 8:11 ` David Miller
2009-06-10 8:11 ` David Miller
2009-06-10 8:11 ` David Miller
2009-06-10 8:11 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090608130959.10052.54590.stgit@localhost \
--to=hawk@comx.dk \
--cc=Trond.Myklebust@netapp.com \
--cc=davem@davemloft.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nfs@vger.kernel.org \
--cc=linux-sctp@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=oliver.hartkopp@volkswagen.de \
--cc=paulmck@linux.vnet.ibm.com \
--cc=sri@us.ibm.com \
--cc=urs.thuermann@volkswagen.de \
--cc=vladislav.yasevich@hp.com \
--cc=wg@grandegger.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.