summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorJiri Kosina <jikos@kernel.org>2016-04-11 19:32:09 (GMT)
committerRusty Russell <rusty@rustcorp.com.au>2016-07-27 03:08:00 (GMT)
commitbf262dcec6383188a3324192c4a7e405b3b1ad23 (patch)
treebd10b7eb3ef68c22a05a83253ebf3bc246d46662 /kernel
parent3fc9d690936fb2e20e180710965ba2cc3a0881f8 (diff)
downloadlinux-bf262dcec6383188a3324192c4a7e405b3b1ad23.tar.xz
module: fix noreturn attribute for __module_put_and_exit()
__module_put_and_exit() is makred noreturn in module.h declaration, but is lacking the attribute in the definition, which makes some tools (such as sparse) unhappy. Amend the definition with the attribute as well (and reformat the declaration so that it uses more common format). Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/module.c b/kernel/module.c
index 5f71aa6..5e87697 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -336,7 +336,7 @@ static inline void add_taint_module(struct module *mod, unsigned flag,
* A thread that wants to hold a reference to a module only while it
* is running can call this to safely exit. nfsd and lockd use this.
*/
-void __module_put_and_exit(struct module *mod, long code)
+void __noreturn __module_put_and_exit(struct module *mod, long code)
{
module_put(mod);
do_exit(code);