The patch titled gss_spkm3: fix error handling in module init has been removed from the -mm tree. Its filename was gss_spkm3-fix-error-handling-in-module-init.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: gss_spkm3: fix error handling in module init From: Akinobu Mita <akinobu.mita@xxxxxxxxx> Return error and prevent from loading module when gss_mech_register() failed. Cc: Andy Adamson <andros@xxxxxxxxxxxxxx> Cc: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> Acked-by: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- net/sunrpc/auth_gss/gss_spkm3_mech.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN net/sunrpc/auth_gss/gss_spkm3_mech.c~gss_spkm3-fix-error-handling-in-module-init net/sunrpc/auth_gss/gss_spkm3_mech.c --- a/net/sunrpc/auth_gss/gss_spkm3_mech.c~gss_spkm3-fix-error-handling-in-module-init +++ a/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) _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are origin.patch powerpc-use-is_init.patch git-dvb.patch ehca-fix-kthread_create-error-check.patch ehca-fix-do_mmap-error-check.patch git-input.patch git-mtd.patch net-use-bitrev8.patch auth_gss-unregister-gss_domain-when-unloading-module.patch iscsi-fix-crypto_alloc_hash-error-check.patch git-watchdog.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html