[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH 13/20] block: remove ->bd_contains
On Thu, Nov 19, 2020 at 11:32:53AM +0100, Jan Kara wrote: > > @@ -1521,7 +1510,7 @@ static int __blkdev_get(struct block_device *bdev, > > fmode_t mode, void *holder, > > if (bdev->bd_bdi == &noop_backing_dev_info) > > bdev->bd_bdi = bdi_get(disk->queue->backing_dev_info); > > } else { > > - if (bdev->bd_contains == bdev) { > > + if (!bdev->bd_partno) { > > This should be !bdev_is_partition(bdev) for consistency, right? Yes. Same for the same check further up for the !bdev->bd_openers case. > > +#define bdev_whole(_bdev) \ > > + ((_bdev)->bd_disk->part0.bdev) > > + > > #define bdev_kobj(_bdev) \ > > (&part_to_dev((_bdev)->bd_part)->kobj) > > I'd somewhat prefer if these helpers could actually be inline functions and > not macros. I guess they are macros because hd_struct isn't in blk_types.h. > But if we moved helpers to blkdev.h, we'd have all definitions we need... > Is that a problem for some users? As you pointed out the reason these are macros is that the obvious placement doesn't work. My plan was to look into cleaning up the block headers, which are a complete mess between blk_types.h, bio.h, blkdev.h and genhd.h after I'm done making sense of the data structures, so for now I didn't want to move too much around. Hopefully we'll be able to convert these helpers to inlines once I'm done.
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |