The patch titled clean up initcall warning for netconsole has been added to the -mm tree. Its filename is clean-up-initcall-warning-for-netconsole.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Matt Mackall <mpm@xxxxxxxxxxx> netconsole is being wrong here. If it wasn't enabled there's no error. Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/netconsole.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/netconsole.c~clean-up-initcall-warning-for-netconsole drivers/net/netconsole.c --- 25/drivers/net/netconsole.c~clean-up-initcall-warning-for-netconsole Tue May 9 12:17:01 2006 +++ 25-akpm/drivers/net/netconsole.c Tue May 9 12:17:01 2006 @@ -107,7 +107,7 @@ static int init_netconsole(void) if(!configured) { printk("netconsole: not configured, aborting\n"); - return -EINVAL; + return 0; } if(netpoll_setup(&np)) _ Patches currently in -mm which might be from mpm@xxxxxxxxxxx are add-poisonh-and-patch-primary-users.patch when-config_base_samll=1-the-kernel-261611-cascade-in-kernel-timerc-may-enter-the-infinite-loop.patch clean-up-initcall-warning-for-netconsole.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