aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ufs
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/ufs
parentc2050a454c7f123d7a57fa1d76ff61bd43643abb (diff)
parentaadfa8019e8114539cfa0b1eb2e5a9c83094a590 (diff)
Merge remote-tracking branch 'ovl/rename2' into for-linus
Diffstat (limited to 'fs/ufs')
-rw-r--r--fs/ufs/namei.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/ufs/namei.c b/fs/ufs/namei.c
index e3b263998130..8eca4eda8450 100644
--- a/fs/ufs/namei.c
+++ b/fs/ufs/namei.c
@@ -245,7 +245,8 @@ static int ufs_rmdir (struct inode * dir, struct dentry *dentry)
245} 245}
246 246
247static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry, 247static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
248 struct inode *new_dir, struct dentry *new_dentry) 248 struct inode *new_dir, struct dentry *new_dentry,
249 unsigned int flags)
249{ 250{
250 struct inode *old_inode = d_inode(old_dentry); 251 struct inode *old_inode = d_inode(old_dentry);
251 struct inode *new_inode = d_inode(new_dentry); 252 struct inode *new_inode = d_inode(new_dentry);
@@ -255,6 +256,9 @@ static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
255 struct ufs_dir_entry *old_de; 256 struct ufs_dir_entry *old_de;
256 int err = -ENOENT; 257 int err = -ENOENT;
257 258
259 if (flags & ~RENAME_NOREPLACE)
260 return -EINVAL;
261
258 old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page); 262 old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page);
259 if (!old_de) 263 if (!old_de)
260 goto out; 264 goto out;