From: Miklos Szeredi Cc: Al Viro Signed-off-by: Andrew Morton --- fs/namespace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/namespace.c~unprivileged-mounts-propagation-inherit-owner-from-parent-fix-for-git-audit fs/namespace.c --- a/fs/namespace.c~unprivileged-mounts-propagation-inherit-owner-from-parent-fix-for-git-audit +++ a/fs/namespace.c @@ -856,7 +856,7 @@ struct vfsmount *collect_mounts(struct v { struct vfsmount *tree; down_read(&namespace_sem); - tree = copy_tree(mnt, dentry, CL_COPY_ALL | CL_PRIVATE); + tree = copy_tree(mnt, dentry, CL_COPY_ALL | CL_PRIVATE, 0); up_read(&namespace_sem); return tree; } _