diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-04-10 15:18:50 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-05-01 22:43:26 -0400 |
commit | cfa6d41263ca2d25435626c45415ebddda53302d (patch) | |
tree | 2a8ab7478df25bfcac1b4f0d21de4524ba2d36ca /fs/ceph | |
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')
-rw-r--r-- | fs/ceph/inode.c | 5 | ||||
-rw-r--r-- | fs/ceph/super.c | 1 | ||||
-rw-r--r-- | fs/ceph/super.h | 1 |
3 files changed, 3 insertions, 4 deletions
diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c index 2d61ddda9bf5..dc0a36d0adf8 100644 --- a/fs/ceph/inode.c +++ b/fs/ceph/inode.c | |||
@@ -519,9 +519,8 @@ struct inode *ceph_alloc_inode(struct super_block *sb) | |||
519 | return &ci->vfs_inode; | 519 | return &ci->vfs_inode; |
520 | } | 520 | } |
521 | 521 | ||
522 | static void ceph_i_callback(struct rcu_head *head) | 522 | void ceph_free_inode(struct inode *inode) |
523 | { | 523 | { |
524 | struct inode *inode = container_of(head, struct inode, i_rcu); | ||
525 | struct ceph_inode_info *ci = ceph_inode(inode); | 524 | struct ceph_inode_info *ci = ceph_inode(inode); |
526 | 525 | ||
527 | kfree(ci->i_symlink); | 526 | kfree(ci->i_symlink); |
@@ -581,8 +580,6 @@ void ceph_destroy_inode(struct inode *inode) | |||
581 | ceph_buffer_put(ci->i_xattrs.prealloc_blob); | 580 | ceph_buffer_put(ci->i_xattrs.prealloc_blob); |
582 | 581 | ||
583 | ceph_put_string(rcu_dereference_raw(ci->i_layout.pool_ns)); | 582 | ceph_put_string(rcu_dereference_raw(ci->i_layout.pool_ns)); |
584 | |||
585 | call_rcu(&inode->i_rcu, ceph_i_callback); | ||
586 | } | 583 | } |
587 | 584 | ||
588 | int ceph_drop_inode(struct inode *inode) | 585 | int ceph_drop_inode(struct inode *inode) |
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) | |||
848 | static const struct super_operations ceph_super_ops = { | 848 | static const struct super_operations ceph_super_ops = { |
849 | .alloc_inode = ceph_alloc_inode, | 849 | .alloc_inode = ceph_alloc_inode, |
850 | .destroy_inode = ceph_destroy_inode, | 850 | .destroy_inode = ceph_destroy_inode, |
851 | .free_inode = ceph_free_inode, | ||
851 | .write_inode = ceph_write_inode, | 852 | .write_inode = ceph_write_inode, |
852 | .drop_inode = ceph_drop_inode, | 853 | .drop_inode = ceph_drop_inode, |
853 | .sync_fs = ceph_sync_fs, | 854 | .sync_fs = ceph_sync_fs, |
diff --git a/fs/ceph/super.h b/fs/ceph/super.h index 16c03188578e..c5b4a05905c0 100644 --- a/fs/ceph/super.h +++ b/fs/ceph/super.h | |||
@@ -874,6 +874,7 @@ extern const struct inode_operations ceph_file_iops; | |||
874 | 874 | ||
875 | extern struct inode *ceph_alloc_inode(struct super_block *sb); | 875 | extern struct inode *ceph_alloc_inode(struct super_block *sb); |
876 | extern void ceph_destroy_inode(struct inode *inode); | 876 | extern void ceph_destroy_inode(struct inode *inode); |
877 | extern void ceph_free_inode(struct inode *inode); | ||
877 | extern int ceph_drop_inode(struct inode *inode); | 878 | extern int ceph_drop_inode(struct inode *inode); |
878 | 879 | ||
879 | extern struct inode *ceph_get_inode(struct super_block *sb, | 880 | extern struct inode *ceph_get_inode(struct super_block *sb, |