From: "Jorn Dreyer" It would be helpful if the kernel did not silently stop parsing nfs options, but instead warned about any he does not recognize. The attached patch adds one printk to do just that. It took me a couple of hours to find my configuration mistake. Signed-off-by: Andrew Morton --- fs/nfs/nfsroot.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletion(-) diff -puN fs/nfs/nfsroot.c~nfsroot-do-not-silently-stop-parsing-on-an-unknown-option fs/nfs/nfsroot.c --- 25/fs/nfs/nfsroot.c~nfsroot-do-not-silently-stop-parsing-on-an-unknown-option Tue Nov 29 13:37:35 2005 +++ 25-akpm/fs/nfs/nfsroot.c Tue Nov 29 13:38:39 2005 @@ -275,7 +275,9 @@ static int __init root_nfs_parse(char *n case Opt_noacl: nfs_data.flags |= NFS_MOUNT_NOACL; break; - default : + default: + printk(KERN_WARNING "Root-NFS: unknown " + "option: %s\n", p); return 0; } } _