From 1823c8fe6a4a20971463e9b51615dad412aea9a9 Mon Sep 17 00:00:00 2001 From: Coleman Kane Date: Sun, 9 Aug 2020 12:03:03 -0400 Subject: [PATCH] Linux 5.9 compat: add linux/blkdev.h include Many of the block device operations (often functions with bdev in the name) were moved into linux/blkdev.h from linux/fs.h. Seems that this header is already included where needed in the code, but in the autoconf tests it was missing causing false negatives. This commit has those tests include linux/fs.h (old location) and now also linux/blkdev.h (new locations). Reviewed-by: Brian Behlendorf Signed-off-by: Coleman Kane Closes #10696 --- AUTHORS | 1 + config/kernel-blkdev.m4 | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/AUTHORS b/AUTHORS index 8314a1c214..5b183bdee2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -83,6 +83,7 @@ CONTRIBUTORS: Christopher Voltz Chunwei Chen Clemens Fruhwirth + Coleman Kane Colin Ian King Craig Loomis Craig Sanders diff --git a/config/kernel-blkdev.m4 b/config/kernel-blkdev.m4 index e21010654d..2644555f55 100644 --- a/config/kernel-blkdev.m4 +++ b/config/kernel-blkdev.m4 @@ -5,6 +5,7 @@ dnl # AC_DEFUN([ZFS_AC_KERNEL_SRC_BLKDEV_GET_BY_PATH], [ ZFS_LINUX_TEST_SRC([blkdev_get_by_path], [ #include + #include ], [ struct block_device *bdev __attribute__ ((unused)) = NULL; const char *path = "path"; @@ -31,6 +32,7 @@ dnl # AC_DEFUN([ZFS_AC_KERNEL_SRC_BLKDEV_PUT], [ ZFS_LINUX_TEST_SRC([blkdev_put], [ #include + #include ], [ struct block_device *bdev = NULL; fmode_t mode = 0; @@ -55,6 +57,7 @@ dnl # AC_DEFUN([ZFS_AC_KERNEL_SRC_BLKDEV_REREAD_PART], [ ZFS_LINUX_TEST_SRC([blkdev_reread_part], [ #include + #include ], [ struct block_device *bdev = NULL; int error; @@ -81,6 +84,7 @@ dnl # AC_DEFUN([ZFS_AC_KERNEL_SRC_BLKDEV_INVALIDATE_BDEV], [ ZFS_LINUX_TEST_SRC([invalidate_bdev], [ #include + #include ],[ struct block_device *bdev = NULL; invalidate_bdev(bdev); @@ -103,6 +107,7 @@ dnl # AC_DEFUN([ZFS_AC_KERNEL_SRC_BLKDEV_LOOKUP_BDEV], [ ZFS_LINUX_TEST_SRC([lookup_bdev_1arg], [ #include + #include ], [ lookup_bdev(NULL); ])