Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull VFS fix from Al Viro: "Spurious ENOTDIR fix" This should fix the problems reported by Dominique Martinet and Hugh Dickins. * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: link_path_walk(): be careful when failing with ENOTDIR
This commit is contained in:
@@ -1954,8 +1954,13 @@ OK:
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (unlikely(!d_can_lookup(nd->path.dentry)))
|
if (unlikely(!d_can_lookup(nd->path.dentry))) {
|
||||||
|
if (nd->flags & LOOKUP_RCU) {
|
||||||
|
if (unlazy_walk(nd, NULL, 0))
|
||||||
|
return -ECHILD;
|
||||||
|
}
|
||||||
return -ENOTDIR;
|
return -ENOTDIR;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user