From fdbec0423b57d89380bf438e89287acb83abd2d4 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Mon, 28 Sep 2020 16:42:54 -0700 Subject: [PATCH] Fix CONFIG_DEBUG_LOCK_ALLOC configure check This check was accidentally broken when the kABI checks were updated to run in parallel, commit 608f874. The check must be for the config_debug_lock_alloc_license name to determine if the symbol is license compatible. Reviewed-by: Tony Hutter Signed-off-by: Brian Behlendorf Closes #10991 --- config/kernel-config-defined.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/kernel-config-defined.m4 b/config/kernel-config-defined.m4 index 0ee4231cc..fe778e649 100644 --- a/config/kernel-config-defined.m4 +++ b/config/kernel-config-defined.m4 @@ -91,7 +91,7 @@ AC_DEFUN([ZFS_AC_KERNEL_SRC_CONFIG_DEBUG_LOCK_ALLOC], [ AC_DEFUN([ZFS_AC_KERNEL_CONFIG_DEBUG_LOCK_ALLOC], [ AC_MSG_CHECKING([whether mutex_lock() is GPL-only]) - ZFS_LINUX_TEST_RESULT([config_debug_lock_alloc], [ + ZFS_LINUX_TEST_RESULT([config_debug_lock_alloc_license], [ AC_MSG_RESULT(no) ],[ AC_MSG_RESULT(yes)