forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Linux 5.18 compat: use address_space_operations->readahead
->readpages was removed and replaced by ->readahead. Define zpl_readahead for kernels that don't have ->readpages. Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Riccardo Schirone <[email protected]> Closes openzfs#13278
- Loading branch information
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
dnl # | ||
dnl # Linux 5.18 removes address_space_operations ->readpages in favour of | ||
dnl # ->readahead | ||
dnl # | ||
AC_DEFUN([ZFS_AC_KERNEL_SRC_VFS_READPAGES], [ | ||
ZFS_LINUX_TEST_SRC([vfs_has_readpages], [ | ||
#include <linux/fs.h> | ||
static const struct address_space_operations | ||
aops __attribute__ ((unused)) = { | ||
.readpages = NULL, | ||
}; | ||
],[]) | ||
]) | ||
|
||
AC_DEFUN([ZFS_AC_KERNEL_VFS_READPAGES], [ | ||
AC_MSG_CHECKING([address_space_operations->readpages exists]) | ||
ZFS_LINUX_TEST_RESULT([vfs_has_readpages], [ | ||
AC_MSG_RESULT([yes]) | ||
AC_DEFINE(HAVE_VFS_READPAGES, 1, | ||
[address_space_operations->readpages exists]) | ||
],[ | ||
AC_MSG_RESULT([no]) | ||
]) | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters