diff options
author | наб <[email protected]> | 2022-03-24 16:33:40 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2022-03-28 09:52:55 -0700 |
commit | 86690775b0a6615003eebb73961400fa94f72a8b (patch) | |
tree | 90eaeec0376ed5e27c7b053b6e5e8974eeedc194 /module | |
parent | d1325b4fa2ddc42beb88d00bf85041507341fdd0 (diff) |
Linux 5.18 compat: replace genhd.h with blkdev.h includes
blkdev.h includes genhd.h since dawn of upstream git, so this is
globally safe
Upstream-commit: 322cbb50de711814c42fb088f6d31901502c711a ("block:
remove genhd.h")
Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes #13251
Diffstat (limited to 'module')
-rw-r--r-- | module/os/linux/zfs/zvol_os.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/os/linux/zfs/zvol_os.c b/module/os/linux/zfs/zvol_os.c index f772f4160..c964cce0d 100644 --- a/module/os/linux/zfs/zvol_os.c +++ b/module/os/linux/zfs/zvol_os.c @@ -906,7 +906,7 @@ zvol_alloc(dev_t dev, const char *name) if (volmode == ZFS_VOLMODE_DEV) { /* * ZFS_VOLMODE_DEV disable partitioning on ZVOL devices: set - * gendisk->minors = 1 as noted in include/linux/genhd.h. + * gendisk->minors = 1 as noted in include/linux/blkdev.h. * Also disable extended partition numbers (GENHD_FL_EXT_DEVT) * and suppresses partition scanning (GENHD_FL_NO_PART_SCAN) * setting gendisk->flags accordingly. |