CIFS shouldn't make mountpoints shrinkable

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

Al Viro 7e1295d9 7b43a79f

+1 -2
+1 -2
fs/cifs/cifs_dfs_ref.c
··· 269 int err; 270 271 mntget(newmnt); 272 - err = do_add_mount(newmnt, &nd->path, nd->path.mnt->mnt_flags, mntlist); 273 switch (err) { 274 case 0: 275 path_put(&nd->path); ··· 371 if (IS_ERR(mnt)) 372 goto out_err; 373 374 - nd->path.mnt->mnt_flags |= MNT_SHRINKABLE; 375 rc = add_mount_helper(mnt, nd, &cifs_dfs_automount_list); 376 377 out:
··· 269 int err; 270 271 mntget(newmnt); 272 + err = do_add_mount(newmnt, &nd->path, nd->path.mnt->mnt_flags | MNT_SHRINKABLE, mntlist); 273 switch (err) { 274 case 0: 275 path_put(&nd->path); ··· 371 if (IS_ERR(mnt)) 372 goto out_err; 373 374 rc = add_mount_helper(mnt, nd, &cifs_dfs_automount_list); 375 376 out: