mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-24 11:18:52 +03:00
When checking for symbol exports, try compiling.
This patch adds a new autoconf function: ZFS_LINUX_TRY_COMPILE_SYMBOL. This new function does the following: - Call LINUX_TRY_COMPILE with the specified parameters. - If unsuccessful, return false. - If successful and we're configuring with --enable-linux-builtin, return true. - Else, call CHECK_SYMBOL_EXPORT with the specified parameters and return the result. All calls to CHECK_SYMBOL_EXPORT are converted to LINUX_TRY_COMPILE_SYMBOL so that the tests work even when configuring for builtin on a kernel which doesn't have loadable module support, or hasn't been built yet. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue #851
This commit is contained in:
committed by
Brian Behlendorf
parent
fc88a6dda9
commit
705741827a
@@ -2,11 +2,17 @@ dnl #
|
||||
dnl # 2.6.28 API change
|
||||
dnl # Added insert_inode_locked() helper function.
|
||||
dnl #
|
||||
AC_DEFUN([ZFS_AC_KERNEL_INSERT_INODE_LOCKED], [
|
||||
ZFS_CHECK_SYMBOL_EXPORT(
|
||||
[insert_inode_locked],
|
||||
[fs/inode.c],
|
||||
[AC_DEFINE(HAVE_INSERT_INODE_LOCKED, 1,
|
||||
[insert_inode_locked() is available])],
|
||||
[])
|
||||
AC_DEFUN([ZFS_AC_KERNEL_INSERT_INODE_LOCKED],
|
||||
[AC_MSG_CHECKING([whether insert_inode_locked() is available])
|
||||
ZFS_LINUX_TRY_COMPILE_SYMBOL([
|
||||
#include <linux/fs.h>
|
||||
], [
|
||||
insert_inode_locked(NULL);
|
||||
], [insert_inode_locked], [fs/inode.c], [
|
||||
AC_MSG_RESULT(yes)
|
||||
AC_DEFINE(HAVE_INSERT_INODE_LOCKED, 1,
|
||||
[insert_inode_locked() is available])
|
||||
], [
|
||||
AC_MSG_RESULT(no)
|
||||
])
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user