mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
f8447cf22e
Reviewed-by: Richard Yao <richard.yao@alumni.stonybrook.edu> Reviewed-by: Brian Atkinson <batkinson@lanl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Youzhong Yang <yyang@mathworks.com> Closes #14891
27 lines
650 B
Plaintext
27 lines
650 B
Plaintext
AC_DEFUN([ZFS_AC_KERNEL_SRC_RECLAIMED], [
|
|
dnl #
|
|
dnl # 6.4 API change
|
|
dnl # The reclaimed_slab of struct reclaim_state
|
|
dnl # is renamed to reclaimed
|
|
dnl #
|
|
ZFS_LINUX_TEST_SRC([reclaim_state_reclaimed], [
|
|
#include <linux/swap.h>
|
|
static const struct reclaim_state
|
|
rs __attribute__ ((unused)) = {
|
|
.reclaimed = 100,
|
|
};
|
|
],[])
|
|
])
|
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_RECLAIMED], [
|
|
AC_MSG_CHECKING([whether struct reclaim_state has reclaimed field])
|
|
ZFS_LINUX_TEST_RESULT([reclaim_state_reclaimed], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_RECLAIM_STATE_RECLAIMED, 1,
|
|
[struct reclaim_state has reclaimed])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
])
|
|
])
|
|
|