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: __set_page_dirty_nobuffers replaced with filemap_d…
…irty_folio Upstream-commit: 6b1f86f8e9c7f9de7ca1cb987b2cf25e99b1ae3a ("Merge tag 'folio-5.18b' of git://git.infradead.org/users/willy/pagecache ") Authored by: Satadru Pramanik <[email protected]> Signed-off-by: Satadru Pramanik <[email protected]> Closes: openzfs#13325
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
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,30 @@ | ||
dnl # | ||
dnl # Linux 5.18 uses filemap_dirty_folio in lieu of | ||
dnl # ___set_page_dirty_nobuffers | ||
dnl # | ||
AC_DEFUN([ZFS_AC_KERNEL_SRC_VFS_FILEMAP_DIRTY_FOLIO], [ | ||
ZFS_LINUX_TEST_SRC([vfs_has_filemap_dirty_folio], [ | ||
#include <linux/pagemap.h> | ||
#include <linux/writeback.h> | ||
static const struct address_space_operations | ||
aops __attribute__ ((unused)) = { | ||
.dirty_folio = filemap_dirty_folio, | ||
}; | ||
],[]) | ||
]) | ||
|
||
AC_DEFUN([ZFS_AC_KERNEL_VFS_FILEMAP_DIRTY_FOLIO], [ | ||
dnl # | ||
dnl # Linux 5.18 uses filemap_dirty_folio in lieu of | ||
dnl # ___set_page_dirty_nobuffers | ||
dnl # | ||
AC_MSG_CHECKING([filemap_dirty_folio exists]) | ||
ZFS_LINUX_TEST_RESULT([vfs_has_filemap_dirty_folio], [ | ||
AC_MSG_RESULT([yes]) | ||
AC_DEFINE(HAVE_VFS_FILEMAP_DIRTY_FOLIO, 1, | ||
[filemap_dirty_folio 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