aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2014-09-07 19:03:56 -0400
committerJens Axboe <axboe@fb.com>2014-09-08 12:00:35 -0400
commitff9ea323816dc1c8ac7144afd4eab3ac97704430 (patch)
treea865fe69407f8c15d4d877defbc801aebf8d1849 /fs
parentf4da80727cfbc3590d95ff17ef8db96e6f1483a4 (diff)
block, bdi: an active gendisk always has a request_queue associated with it
bdev_get_queue() returns the request_queue associated with the specified block_device. blk_get_backing_dev_info() makes use of bdev_get_queue() to determine the associated bdi given a block_device. All the callers of bdev_get_queue() including blk_get_backing_dev_info() assume that bdev_get_queue() may return NULL and implement NULL handling; however, bdev_get_queue() requires the passed in block_device is opened and attached to its gendisk. Because an active gendisk always has a valid request_queue associated with it, bdev_get_queue() can never return NULL and neither can blk_get_backing_dev_info(). Make it clear that neither of the two functions can return NULL and remove NULL handling from all the callers. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Chris Mason <clm@fb.com> Cc: Dave Chinner <david@fromorbit.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/block_dev.c2
-rw-r--r--fs/btrfs/disk-io.c2
-rw-r--r--fs/xfs/xfs_buf.c2
3 files changed, 1 insertions, 5 deletions
diff --git a/fs/block_dev.c b/fs/block_dev.c
index 6d7274619bf9..d3251eca6429 100644
--- a/fs/block_dev.c
+++ b/fs/block_dev.c
@@ -1173,8 +1173,6 @@ static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
1173 if (!ret) { 1173 if (!ret) {
1174 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9); 1174 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1175 bdi = blk_get_backing_dev_info(bdev); 1175 bdi = blk_get_backing_dev_info(bdev);
1176 if (bdi == NULL)
1177 bdi = &default_backing_dev_info;
1178 bdev_inode_switch_bdi(bdev->bd_inode, bdi); 1176 bdev_inode_switch_bdi(bdev->bd_inode, bdi);
1179 } 1177 }
1180 1178
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index d0ed9e664f7d..39ff591ae1b4 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -1694,7 +1694,7 @@ static int btrfs_congested_fn(void *congested_data, int bdi_bits)
1694 if (!device->bdev) 1694 if (!device->bdev)
1695 continue; 1695 continue;
1696 bdi = blk_get_backing_dev_info(device->bdev); 1696 bdi = blk_get_backing_dev_info(device->bdev);
1697 if (bdi && bdi_congested(bdi, bdi_bits)) { 1697 if (bdi_congested(bdi, bdi_bits)) {
1698 ret = 1; 1698 ret = 1;
1699 break; 1699 break;
1700 } 1700 }
diff --git a/fs/xfs/xfs_buf.c b/fs/xfs/xfs_buf.c
index cd7b8ca9b064..497fcde381d7 100644
--- a/fs/xfs/xfs_buf.c
+++ b/fs/xfs/xfs_buf.c
@@ -1678,8 +1678,6 @@ xfs_alloc_buftarg(
1678 btp->bt_dev = bdev->bd_dev; 1678 btp->bt_dev = bdev->bd_dev;
1679 btp->bt_bdev = bdev; 1679 btp->bt_bdev = bdev;
1680 btp->bt_bdi = blk_get_backing_dev_info(bdev); 1680 btp->bt_bdi = blk_get_backing_dev_info(bdev);
1681 if (!btp->bt_bdi)
1682 goto error;
1683 1681
1684 if (xfs_setsize_buftarg_early(btp, bdev)) 1682 if (xfs_setsize_buftarg_early(btp, bdev))
1685 goto error; 1683 goto error;