diff options
author | Al Viro | 2019-04-10 15:18:50 -0400 |
---|---|---|
committer | Al Viro | 2019-05-01 22:43:26 -0400 |
commit | cfa6d41263ca2d25435626c45415ebddda53302d (patch) | |
tree | 2a8ab7478df25bfcac1b4f0d21de4524ba2d36ca /fs/ceph/super.c | |
parent | 26602cab411782dab49a75b316f375933ef380d3 (diff) |
ceph: use ->free_inode()
a lot of non-delayed work in this case; all of that is left in
->destroy_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r-- | fs/ceph/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c index 6d5bb2f74612..285edda4fc3b 100644 --- a/fs/ceph/super.c +++ b/fs/ceph/super.c @@ -848,6 +848,7 @@ static void ceph_umount_begin(struct super_block *sb) static const struct super_operations ceph_super_ops = { .alloc_inode = ceph_alloc_inode, .destroy_inode = ceph_destroy_inode, + .free_inode = ceph_free_inode, .write_inode = ceph_write_inode, .drop_inode = ceph_drop_inode, .sync_fs = ceph_sync_fs, |