diff options
author | Luis Henriques <lhenriques@suse.com> | 2019-07-05 12:14:56 -0400 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2019-07-08 08:01:45 -0400 |
commit | 52dd0f1b3f94e600901ad785226e597743401245 (patch) | |
tree | bece918943a9852480d2a2e025af7f25a3d50ccf /fs/ceph/super.c | |
parent | 87bc5b895d94a0f40fe170d4cf5771c8e8f85d15 (diff) |
ceph: use generic_delete_inode() for ->drop_inode
ceph_drop_inode() implementation is not any different from the generic
function, thus there's no point in keeping it around.
Signed-off-by: Luis Henriques <lhenriques@suse.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r-- | fs/ceph/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c index 5f0c950ca966..84d23c896daa 100644 --- a/fs/ceph/super.c +++ b/fs/ceph/super.c | |||
@@ -842,7 +842,7 @@ static const struct super_operations ceph_super_ops = { | |||
842 | .alloc_inode = ceph_alloc_inode, | 842 | .alloc_inode = ceph_alloc_inode, |
843 | .free_inode = ceph_free_inode, | 843 | .free_inode = ceph_free_inode, |
844 | .write_inode = ceph_write_inode, | 844 | .write_inode = ceph_write_inode, |
845 | .drop_inode = ceph_drop_inode, | 845 | .drop_inode = generic_delete_inode, |
846 | .evict_inode = ceph_evict_inode, | 846 | .evict_inode = ceph_evict_inode, |
847 | .sync_fs = ceph_sync_fs, | 847 | .sync_fs = ceph_sync_fs, |
848 | .put_super = ceph_put_super, | 848 | .put_super = ceph_put_super, |