aboutsummaryrefslogtreecommitdiffstats
path: root/fs/hfs
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2016-10-10 23:02:51 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2016-10-10 23:02:51 -0400
commit3873691e5ab34fa26948643d038a2b98c4437298 (patch)
tree5327469194c2167830bce38b56a618b754cdbeea /fs/hfs
parentc2050a454c7f123d7a57fa1d76ff61bd43643abb (diff)
parentaadfa8019e8114539cfa0b1eb2e5a9c83094a590 (diff)
Merge remote-tracking branch 'ovl/rename2' into for-linus
Diffstat (limited to 'fs/hfs')
-rw-r--r--fs/hfs/dir.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/hfs/dir.c b/fs/hfs/dir.c
index 4f379fb91691..5de5c48b418d 100644
--- a/fs/hfs/dir.c
+++ b/fs/hfs/dir.c
@@ -286,10 +286,14 @@ static int hfs_remove(struct inode *dir, struct dentry *dentry)
286 * XXX: how do you handle must_be dir? 286 * XXX: how do you handle must_be dir?
287 */ 287 */
288static int hfs_rename(struct inode *old_dir, struct dentry *old_dentry, 288static int hfs_rename(struct inode *old_dir, struct dentry *old_dentry,
289 struct inode *new_dir, struct dentry *new_dentry) 289 struct inode *new_dir, struct dentry *new_dentry,
290 unsigned int flags)
290{ 291{
291 int res; 292 int res;
292 293
294 if (flags & ~RENAME_NOREPLACE)
295 return -EINVAL;
296
293 /* Unlink destination if it already exists */ 297 /* Unlink destination if it already exists */
294 if (d_really_is_positive(new_dentry)) { 298 if (d_really_is_positive(new_dentry)) {
295 res = hfs_remove(new_dir, new_dentry); 299 res = hfs_remove(new_dir, new_dentry);