diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-02-07 18:15:56 +1030 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-02-12 09:31:02 -0800 |
commit | c8e7fd2807c76ec171fee6bce142cd06b5745497 (patch) | |
tree | 1a608c7752b37135485f98ba080026235ca28af3 /include | |
parent | d7a95c07acbca8128e8a3a776bc1ab43ad744f9f (diff) |
module: remove over-zealous check in __module_get()
commit 7f9a50a5b89b87f8e754f59ae9968da28be618a5 upstream.
Impact: fix spurious BUG_ON() triggered under load
module_refcount() isn't reliable outside stop_machine(), as demonstrated
by Karsten Keil <kkeil@suse.de>, networking can trigger it under load
(an inc on one cpu and dec on another while module_refcount() is tallying
can give false results, for example).
Almost noone should be using __module_get, but that's another issue.
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/module.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 68e09557c951..760a41bf88e4 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -387,7 +387,6 @@ void symbol_put_addr(void *addr); static inline void __module_get(struct module *module) { if (module) { - BUG_ON(module_refcount(module) == 0); local_inc(&module->ref[get_cpu()].count); put_cpu(); } |