mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
c9c0d073da
Add autoconf style build infrastructure to the ZFS tree. This includes autogen.sh, configure.ac, m4 macros, some scripts/*, and makefiles for all the core ZFS components.
23 lines
609 B
Plaintext
23 lines
609 B
Plaintext
dnl #
|
|
dnl # 2.6.31 API change
|
|
dnl # Request queue peek/retrieval interface cleanup, the
|
|
dnl # elv_requeue_request() function has been replaced with the
|
|
dnl # blk_requeue_request() function.
|
|
dnl #
|
|
AC_DEFUN([ZFS_AC_KERNEL_BLK_REQUEUE_REQUEST], [
|
|
AC_MSG_CHECKING([whether blk_requeue_request() is available])
|
|
ZFS_LINUX_TRY_COMPILE([
|
|
#include <linux/blkdev.h>
|
|
],[
|
|
struct request_queue *q = NULL;
|
|
struct request *req = NULL;
|
|
blk_requeue_request(q, req);
|
|
],[
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_BLK_REQUEUE_REQUEST, 1,
|
|
[blk_requeue_request() is available])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
])
|
|
])
|