diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2006-12-22 01:10:09 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-22 08:55:49 -0800 |
commit | fadfc8e930dcaf502b49a0a0170ba8ebe9a34c49 (patch) | |
tree | 85d353684bd2890af12483cb20147b3c60294f25 /net/sunrpc | |
parent | 3e1fbd12c958591695f89b11f9c6ec08d002e358 (diff) | |
download | linux-3.10-fadfc8e930dcaf502b49a0a0170ba8ebe9a34c49.tar.gz linux-3.10-fadfc8e930dcaf502b49a0a0170ba8ebe9a34c49.tar.bz2 linux-3.10-fadfc8e930dcaf502b49a0a0170ba8ebe9a34c49.zip |
[PATCH] gss_spkm3: fix error handling in module init
Return error and prevent from loading module when gss_mech_register()
failed.
Cc: Andy Adamson <andros@citi.umich.edu>
Cc: J. Bruce Fields <bfields@citi.umich.edu>
Acked-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/auth_gss/gss_spkm3_mech.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/auth_gss/gss_spkm3_mech.c b/net/sunrpc/auth_gss/gss_spkm3_mech.c index 41465072d0b..8ef3f1c1943 100644 --- a/net/sunrpc/auth_gss/gss_spkm3_mech.c +++ b/net/sunrpc/auth_gss/gss_spkm3_mech.c @@ -228,7 +228,7 @@ static int __init init_spkm3_module(void) status = gss_mech_register(&gss_spkm3_mech); if (status) printk("Failed to register spkm3 gss mechanism!\n"); - return 0; + return status; } static void __exit cleanup_spkm3_module(void) |