]> git.proxmox.com Git - mirror_zfs.git/blobdiff - config/kernel-truncate-setsize.m4
Perform KABI checks in parallel
[mirror_zfs.git] / config / kernel-truncate-setsize.m4
index 7e4aff479a90e0952888191c55eabd51a6bddc3e..e719c1444ab047a37bf57e5901990e90cd7fe9af 100644 (file)
@@ -2,16 +2,21 @@ dnl #
 dnl # 2.6.35 API change
 dnl # Added truncate_setsize() helper function.
 dnl #
-AC_DEFUN([ZFS_AC_KERNEL_TRUNCATE_SETSIZE],
-       [AC_MSG_CHECKING([whether truncate_setsize() is available])
-       ZFS_LINUX_TRY_COMPILE_SYMBOL([
+AC_DEFUN([ZFS_AC_KERNEL_SRC_TRUNCATE_SETSIZE], [
+       ZFS_LINUX_TEST_SRC([truncate_setsize], [
                #include <linux/mm.h>
        ], [
                truncate_setsize(NULL, 0);
-       ], [truncate_setsize], [mm/truncate.c], [
+       ])
+])
+
+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)
                AC_DEFINE(HAVE_TRUNCATE_SETSIZE, 1,
-                         [truncate_setsize() is available])
+                   [truncate_setsize() is available])
        ], [
                AC_MSG_RESULT(no)
        ])