|
@@ -105,7 +105,10 @@ static void * nfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd)
|
|
|
|
|
|
dprintk("--> nfs_follow_mountpoint()\n");
|
|
dprintk("--> nfs_follow_mountpoint()\n");
|
|
|
|
|
|
- BUG_ON(IS_ROOT(dentry));
|
|
|
|
|
|
+ err = -ESTALE;
|
|
|
|
+ if (IS_ROOT(dentry))
|
|
|
|
+ goto out_err;
|
|
|
|
+
|
|
dprintk("%s: enter\n", __func__);
|
|
dprintk("%s: enter\n", __func__);
|
|
dput(nd->path.dentry);
|
|
dput(nd->path.dentry);
|
|
nd->path.dentry = dget(dentry);
|
|
nd->path.dentry = dget(dentry);
|