Messages in this thread Patch in this message |  | | Date | Mon, 15 Oct 2001 19:01:08 -0700 | From | Tim Hockin <> | Subject | [PATCH] fix NFS root in 2.4.12 |
| |
Linus, Alan,
This one liner fixes NFS root for kernel 2.4.12. Please apply.
Thanks
Tim -- Tim Hockin Systems Software Engineer Sun Microsystems, Cobalt Server Appliances thockin@sun.comdiff -ruN dist-2.4.12+patches/fs/super.c cvs-2.4.12+patches/fs/super.c --- dist-2.4.12+patches/fs/super.c Mon Oct 15 10:23:02 2001 +++ cvs-2.4.12+patches/fs/super.c Mon Oct 15 10:23:02 2001 @@ -935,7 +935,7 @@ data = nfs_root_data(); if (!data) goto no_nfs; - vfsmnt = do_kern_mount("nfs", root_mountflags, "/dev/root", data); + vfsmnt = do_kern_mount("nfs", root_mountflags, "/dev/root", NULL, data); if (!IS_ERR(vfsmnt)) { printk ("VFS: Mounted root (%s filesystem).\n", "nfs"); ROOT_DEV = vfsmnt->mnt_sb->s_dev; |  |