-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoids using fallback_migrate_folio, which starts unnecessary writeback (leading to BUG in migrate_folio_extra). Signed-off-by: tstabrawa <[email protected]>
- Loading branch information
Showing
3 changed files
with
35 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,27 @@ | ||
dnl # | ||
dnl # Linux 6.0 uses migrate_folio in lieu of migrate_page | ||
dnl # | ||
AC_DEFUN([ZFS_AC_KERNEL_SRC_VFS_MIGRATE_FOLIO], [ | ||
ZFS_LINUX_TEST_SRC([vfs_has_migrate_folio], [ | ||
#include <linux/fs.h> | ||
#include <linux/migrate.h> | ||
static const struct address_space_operations | ||
aops __attribute__ ((unused)) = { | ||
.migrate_folio = migrate_folio, | ||
}; | ||
],[]) | ||
]) | ||
|
||
AC_DEFUN([ZFS_AC_KERNEL_VFS_MIGRATE_FOLIO], [ | ||
dnl # | ||
dnl # Linux 6.0 uses migrate_folio in lieu of migrate_page | ||
dnl # | ||
AC_MSG_CHECKING([whether migrate_folio exists]) | ||
ZFS_LINUX_TEST_RESULT([vfs_has_migrate_folio], [ | ||
AC_MSG_RESULT([yes]) | ||
AC_DEFINE(HAVE_VFS_MIGRATE_FOLIO, 1, [migrate_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