summaryrefslogtreecommitdiffstats
path: root/config/kernel-blk-fetch-request.m4
blob: 34a5d2fa8f6c1ba0e486a934f5e04a6f5af6f3c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
dnl #
dnl # 2.6.31 API change
dnl # Request queue peek/retrieval interface cleanup, the blk_fetch_request()
dnl # function replaces the elv_next_request() and blk_fetch_request()
dnl # functions.  The updated blk_fetch_request() function returns the
dnl # next available request and removed it from the request queue.
dnl #
AC_DEFUN([ZFS_AC_KERNEL_BLK_FETCH_REQUEST], [
	AC_MSG_CHECKING([whether blk_fetch_request() is available])
	ZFS_LINUX_TRY_COMPILE([
		#include <linux/blkdev.h>
	],[
		struct request_queue *q = NULL;
		(void) blk_fetch_request(q);
	],[
		AC_MSG_RESULT(yes)
		AC_DEFINE(HAVE_BLK_FETCH_REQUEST, 1,
		          [blk_fetch_request() is available])
	],[
		AC_MSG_RESULT(no)
	])
])