diff options
author | Brian Behlendorf <[email protected]> | 2020-09-28 16:42:54 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-28 16:42:54 -0700 |
commit | 4c5159cc5cb08f00c2a69d2b1dd0d5420745eb4b (patch) | |
tree | c22312bcb7ad26e95a65c86034d9aa73f5c45b5b /config | |
parent | 96951e0327ecc6f54125775ab807ba7dc9189b9b (diff) |
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 <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #10991
Diffstat (limited to 'config')
-rw-r--r-- | config/kernel-config-defined.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
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) |