The patch titled gss_spkm3: fix error handling in module init has been added to the -mm tree. Its filename is gss_spkm3-fix-error-handling-in-module-init.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ 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> Cc: 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 @@ -288,7 +288,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 sc1200wdt-fix-missing-pnp_unregister_driver.patch isdn-gigaset-avoid-cs-dev-null-pointer-dereference.patch acpi-fix-single-linked-list-manipulation.patch debugfs-check-return-value-correctly.patch lightning-return-proper-return-code.patch git-mtd.patch n2-fix-confusing-error-code.patch tokenring-fix-module_init-error-handling.patch gss_spkm3-fix-error-handling-in-module-init.patch git-pcmcia.patch pci-fix-__pci_register_driver-error-handling.patch acpiphp-fix-missing-acpiphp_glue_exit.patch edac_mc-fix-error-handling.patch paride-return-proper-error-code.patch bit-revese-library.patch crc32-replace-bitreverse-by-bitrev32.patch video-use-bitrev8.patch net-use-bitrev8.patch isdn-hisax-use-bitrev8.patch atm-ambassador-use-bitrev8.patch isdn-gigaset-use-bitrev8.patch isdn-fix-missing-unregister_capi_driver.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