From: Trond Myklebust Date: Fri, 9 Jun 2006 13:34:32 +0000 (-0400) Subject: NFS: Fix typo in nfs_do_clone_mount() X-Git-Tag: v2.6.18-rc1~861^2~19 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=4e5ccf60c5aa79d325c123f47d288a068166f389;p=linux-2.6-omap-h63xx.git NFS: Fix typo in nfs_do_clone_mount() Doh! Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 550a84dd41a..7ab2b38a990 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c @@ -2450,7 +2450,7 @@ static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server, char *devn switch (server->rpc_ops->version) { case 2: case 3: - mnt = vfs_kern_mount(&clone_nfs_fs_type, 0, devname, &mountdata); + mnt = vfs_kern_mount(&clone_nfs_fs_type, 0, devname, mountdata); break; case 4: mnt = vfs_kern_mount(&clone_nfs4_fs_type, 0, devname, mountdata); @@ -2493,7 +2493,7 @@ static inline void unregister_nfs4fs(void) #define unregister_nfs4fs() static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server, char *devname, struct nfs_clone_mount *mountdata) { - return vfs_kern_mount(&clone_nfs_fs_type, 0, devname, &mountdata); + return vfs_kern_mount(&clone_nfs_fs_type, 0, devname, mountdata); } #endif