mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-03-10 20:36:21 +03:00
Sponsored-by: https://despairlabs.com/sponsor/ Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Signed-off-by: Rob Norris <robn@despairlabs.com> Closes #18077
23 lines
558 B
Plaintext
23 lines
558 B
Plaintext
dnl # SPDX-License-Identifier: CDDL-1.0
|
|
dnl #
|
|
dnl # 2.6.35 API change
|
|
dnl # Added truncate_setsize() helper function.
|
|
dnl #
|
|
AC_DEFUN([ZFS_AC_KERNEL_SRC_TRUNCATE_SETSIZE], [
|
|
ZFS_LINUX_TEST_SRC([truncate_setsize], [
|
|
#include <linux/mm.h>
|
|
], [
|
|
truncate_setsize(NULL, 0);
|
|
])
|
|
])
|
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_TRUNCATE_SETSIZE], [
|
|
AC_MSG_CHECKING([whether truncate_setsize() is available])
|
|
ZFS_LINUX_TEST_RESULT_SYMBOL([truncate_setsize],
|
|
[truncate_setsize], [mm/truncate.c], [
|
|
AC_MSG_RESULT(yes)
|
|
], [
|
|
ZFS_LINUX_TEST_ERROR([truncate_setsize])
|
|
])
|
|
])
|