diff options
| author | Jan Kara <[email protected]> | 2023-09-27 11:34:16 +0200 |
|---|---|---|
| committer | Christian Brauner <[email protected]> | 2023-10-28 13:29:18 +0200 |
| commit | c2fce61fb22e3235d29512558c4e93e184e2f68b (patch) | |
| tree | a86d0dba5a43d709b88829bc24b534584ae34b3d /include/linux | |
| parent | 631b001fd6bccb2438a6252dbb62d09cbba3350b (diff) | |
dm: Convert to bdev_open_by_dev()
Convert device mapper to use bdev_open_by_dev() and pass the handle
around.
CC: Alasdair Kergon <[email protected]>
CC: Mike Snitzer <[email protected]>
CC: [email protected]
Acked-by: Christoph Hellwig <[email protected]>
Acked-by: Christian Brauner <[email protected]>
Signed-off-by: Jan Kara <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Christian Brauner <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/device-mapper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h index 69d0435c7ebb..772ab4d74d94 100644 --- a/include/linux/device-mapper.h +++ b/include/linux/device-mapper.h @@ -165,6 +165,7 @@ void dm_error(const char *message); struct dm_dev { struct block_device *bdev; + struct bdev_handle *bdev_handle; struct dax_device *dax_dev; blk_mode_t mode; char name[16]; |