diff options
Diffstat (limited to 'fs/namei.c')
-rw-r--r-- | fs/namei.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/namei.c b/fs/namei.c index b912b7abe747..e092648a068c 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -1065,7 +1065,7 @@ failed: | |||
1065 | * Care must be taken as namespace_sem may be held (indicated by mounting_here | 1065 | * Care must be taken as namespace_sem may be held (indicated by mounting_here |
1066 | * being true). | 1066 | * being true). |
1067 | */ | 1067 | */ |
1068 | int follow_down(struct path *path, bool mounting_here) | 1068 | int follow_down(struct path *path) |
1069 | { | 1069 | { |
1070 | unsigned managed; | 1070 | unsigned managed; |
1071 | int ret; | 1071 | int ret; |
@@ -1086,7 +1086,7 @@ int follow_down(struct path *path, bool mounting_here) | |||
1086 | BUG_ON(!path->dentry->d_op); | 1086 | BUG_ON(!path->dentry->d_op); |
1087 | BUG_ON(!path->dentry->d_op->d_manage); | 1087 | BUG_ON(!path->dentry->d_op->d_manage); |
1088 | ret = path->dentry->d_op->d_manage( | 1088 | ret = path->dentry->d_op->d_manage( |
1089 | path->dentry, mounting_here, false); | 1089 | path->dentry, false, false); |
1090 | if (ret < 0) | 1090 | if (ret < 0) |
1091 | return ret == -EISDIR ? 0 : ret; | 1091 | return ret == -EISDIR ? 0 : ret; |
1092 | } | 1092 | } |