summaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2017-02-02 09:56:49 -0500
committerJens Axboe <axboe@fb.com>2017-02-02 10:18:41 -0500
commitf44f1ab5a2dcd4e16eab850fd08e40ff2d0c28d4 (patch)
tree759fa3fdce7ef3b945baa2668842c5216e42bf1f /include/linux/fs.h
parentb0d9111a2d53785847763c64c40af2d4c4c5a8b7 (diff)
block: Unhash block device inodes on gendisk destruction
Currently, block device inodes stay around after corresponding gendisk hash died until memory reclaim finds them and frees them. Since we will make block device inode pin the bdi, we want to free the block device inode as soon as the device goes away so that bdi does not stay around unnecessarily. Furthermore we need to avoid issues when new device with the same major,minor pair gets created since reusing the bdi structure would be rather difficult in this case. Unhashing block device inode on gendisk destruction nicely deals with these problems. Once last block device inode reference is dropped (which may be directly in del_gendisk()), the inode gets evicted. Furthermore if the major,minor pair gets reallocated, we are guaranteed to get new block device inode even if old block device inode is not yet evicted and thus we avoid issues with possible reuse of bdi. Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 2ba074328894..702cb6c50194 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2342,6 +2342,7 @@ extern struct kmem_cache *names_cachep;
2342#ifdef CONFIG_BLOCK 2342#ifdef CONFIG_BLOCK
2343extern int register_blkdev(unsigned int, const char *); 2343extern int register_blkdev(unsigned int, const char *);
2344extern void unregister_blkdev(unsigned int, const char *); 2344extern void unregister_blkdev(unsigned int, const char *);
2345extern void bdev_unhash_inode(dev_t dev);
2345extern struct block_device *bdget(dev_t); 2346extern struct block_device *bdget(dev_t);
2346extern struct block_device *bdgrab(struct block_device *bdev); 2347extern struct block_device *bdgrab(struct block_device *bdev);
2347extern void bd_set_size(struct block_device *, loff_t size); 2348extern void bd_set_size(struct block_device *, loff_t size);