diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-04-10 15:09:09 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-05-01 22:43:24 -0400 |
commit | 8d8fc9cbc7a83e80eea33f23c4973003b64ddf17 (patch) | |
tree | d9f0eaefed6cf4c066b4f563a6497bbcfff7bde0 /fs/bfs/inode.c | |
parent | 49f82a808bb06365f363d257d78260ef7cb03d6e (diff) |
bfs: switch to ->free_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/bfs/inode.c')
-rw-r--r-- | fs/bfs/inode.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/fs/bfs/inode.c b/fs/bfs/inode.c index d136b2aaafb3..dc0cd2aa3d65 100644 --- a/fs/bfs/inode.c +++ b/fs/bfs/inode.c | |||
@@ -245,17 +245,11 @@ static struct inode *bfs_alloc_inode(struct super_block *sb) | |||
245 | return &bi->vfs_inode; | 245 | return &bi->vfs_inode; |
246 | } | 246 | } |
247 | 247 | ||
248 | static void bfs_i_callback(struct rcu_head *head) | 248 | static void bfs_free_inode(struct inode *inode) |
249 | { | 249 | { |
250 | struct inode *inode = container_of(head, struct inode, i_rcu); | ||
251 | kmem_cache_free(bfs_inode_cachep, BFS_I(inode)); | 250 | kmem_cache_free(bfs_inode_cachep, BFS_I(inode)); |
252 | } | 251 | } |
253 | 252 | ||
254 | static void bfs_destroy_inode(struct inode *inode) | ||
255 | { | ||
256 | call_rcu(&inode->i_rcu, bfs_i_callback); | ||
257 | } | ||
258 | |||
259 | static void init_once(void *foo) | 253 | static void init_once(void *foo) |
260 | { | 254 | { |
261 | struct bfs_inode_info *bi = foo; | 255 | struct bfs_inode_info *bi = foo; |
@@ -287,7 +281,7 @@ static void destroy_inodecache(void) | |||
287 | 281 | ||
288 | static const struct super_operations bfs_sops = { | 282 | static const struct super_operations bfs_sops = { |
289 | .alloc_inode = bfs_alloc_inode, | 283 | .alloc_inode = bfs_alloc_inode, |
290 | .destroy_inode = bfs_destroy_inode, | 284 | .free_inode = bfs_free_inode, |
291 | .write_inode = bfs_write_inode, | 285 | .write_inode = bfs_write_inode, |
292 | .evict_inode = bfs_evict_inode, | 286 | .evict_inode = bfs_evict_inode, |
293 | .put_super = bfs_put_super, | 287 | .put_super = bfs_put_super, |