diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2014-07-23 15:15:30 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-08-07 14:40:09 -0400 |
commit | 7177a9c4b509eb357cc450256bc3cf39f1a1e639 (patch) | |
tree | 077ca807a8aea9b105ac5997e4cc99d4fdd3d0e9 /fs/ext4 | |
parent | 2577d92ebd28dd9b3dacdfad6dcd81be0d21bbdf (diff) | |
download | op-kernel-dev-7177a9c4b509eb357cc450256bc3cf39f1a1e639.zip op-kernel-dev-7177a9c4b509eb357cc450256bc3cf39f1a1e639.tar.gz |
fs: call rename2 if exists
Christoph Hellwig suggests:
1) make vfs_rename call ->rename2 if it exists instead of ->rename
2) switch all filesystems that you're adding NOREPLACE support for to
use ->rename2
3) see how many ->rename instances we'll have left after a few
iterations of 2.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/namei.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 3520ab8..b147a67 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c @@ -3455,7 +3455,6 @@ const struct inode_operations ext4_dir_inode_operations = { .rmdir = ext4_rmdir, .mknod = ext4_mknod, .tmpfile = ext4_tmpfile, - .rename = ext4_rename, .rename2 = ext4_rename2, .setattr = ext4_setattr, .setxattr = generic_setxattr, |