Skip to content

Commit

Permalink
block: add a bdget_part helper
Browse files Browse the repository at this point in the history
All remaining callers of bdget() outside of fs/block_dev.c want to get a
reference to the struct block_device for a given struct hd_struct.  Add
a helper just for that and then mark bdget static.

Signed-off-by: Christoph Hellwig <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
Christoph Hellwig authored and axboe committed Oct 5, 2020
1 parent 155bd9d commit 10ed166
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion block/genhd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ struct block_device *bdget_disk(struct gendisk *disk, int partno)

part = disk_get_part(disk, partno);
if (part)
bdev = bdget(part_devt(part));
bdev = bdget_part(part);
disk_put_part(part);

return bdev;
Expand Down
2 changes: 1 addition & 1 deletion block/partitions/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ int bdev_resize_partition(struct block_device *bdev, int partno,
return -ENXIO;

ret = -ENOMEM;
bdevp = bdget(part_devt(part));
bdevp = bdget_part(part);
if (!bdevp)
goto out_put_part;

Expand Down
9 changes: 6 additions & 3 deletions fs/block_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ static int bdev_set(struct inode *inode, void *data)
return 0;
}

struct block_device *bdget(dev_t dev)
static struct block_device *bdget(dev_t dev)
{
struct block_device *bdev;
struct inode *inode;
Expand Down Expand Up @@ -920,8 +920,6 @@ struct block_device *bdget(dev_t dev)
return bdev;
}

EXPORT_SYMBOL(bdget);

/**
* bdgrab -- Grab a reference to an already referenced block device
* @bdev: Block device to grab a reference to.
Expand All @@ -933,6 +931,11 @@ struct block_device *bdgrab(struct block_device *bdev)
}
EXPORT_SYMBOL(bdgrab);

struct block_device *bdget_part(struct hd_struct *part)
{
return bdget(part_devt(part));
}

long nr_blockdev_pages(void)
{
struct inode *inode;
Expand Down
2 changes: 1 addition & 1 deletion include/linux/blkdev.h
Original file line number Diff line number Diff line change
Expand Up @@ -2003,7 +2003,7 @@ void bd_abort_claiming(struct block_device *bdev, struct block_device *whole,
void blkdev_put(struct block_device *bdev, fmode_t mode);

struct block_device *I_BDEV(struct inode *inode);
struct block_device *bdget(dev_t);
struct block_device *bdget_part(struct hd_struct *part);
struct block_device *bdgrab(struct block_device *bdev);
void bdput(struct block_device *);

Expand Down
9 changes: 2 additions & 7 deletions kernel/trace/blktrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -1827,13 +1827,11 @@ static ssize_t sysfs_blk_trace_attr_show(struct device *dev,
struct device_attribute *attr,
char *buf)
{
struct hd_struct *p = dev_to_part(dev);
struct block_device *bdev = bdget_part(dev_to_part(dev));
struct request_queue *q;
struct block_device *bdev;
struct blk_trace *bt;
ssize_t ret = -ENXIO;

bdev = bdget(part_devt(p));
if (bdev == NULL)
goto out;

Expand Down Expand Up @@ -1875,7 +1873,6 @@ static ssize_t sysfs_blk_trace_attr_store(struct device *dev,
{
struct block_device *bdev;
struct request_queue *q;
struct hd_struct *p;
struct blk_trace *bt;
u64 value;
ssize_t ret = -EINVAL;
Expand All @@ -1895,9 +1892,7 @@ static ssize_t sysfs_blk_trace_attr_store(struct device *dev,
goto out;

ret = -ENXIO;

p = dev_to_part(dev);
bdev = bdget(part_devt(p));
bdev = bdget_part(dev_to_part(dev));
if (bdev == NULL)
goto out;

Expand Down

0 comments on commit 10ed166

Please sign in to comment.