summaryrefslogtreecommitdiffstats
path: root/config/kernel-blk-queue-unplug.m4
blob: f5d1814b83a862146a922792c02944cbbdc40383 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
dnl #
dnl # 2.6.32-2.6.35 API - The BIO_RW_UNPLUG enum can be used as a hint
dnl # to unplug the queue.
dnl #
AC_DEFUN([ZFS_AC_KERNEL_SRC_BIO_RW_UNPLUG], [
	ZFS_LINUX_TEST_SRC([blk_queue_bio_rw_unplug], [
		#include <linux/blkdev.h>
	],[
		enum bio_rw_flags rw __attribute__ ((unused)) = BIO_RW_UNPLUG;
	])
])

AC_DEFUN([ZFS_AC_KERNEL_BIO_RW_UNPLUG], [
	AC_MSG_CHECKING([whether the BIO_RW_UNPLUG enum is available])
	ZFS_LINUX_TEST_RESULT([blk_queue_bio_rw_unplug], [
		AC_MSG_RESULT(yes)
		AC_DEFINE(HAVE_BLK_QUEUE_HAVE_BIO_RW_UNPLUG, 1,
		    [BIO_RW_UNPLUG is available])
	],[
		AC_MSG_RESULT(no)
	])
])

AC_DEFUN([ZFS_AC_KERNEL_SRC_BLK_PLUG], [
	ZFS_LINUX_TEST_SRC([blk_plug], [
		#include <linux/blkdev.h>
	],[
		struct blk_plug plug __attribute__ ((unused));

		blk_start_plug(&plug);
		blk_finish_plug(&plug);
	])
])

AC_DEFUN([ZFS_AC_KERNEL_BLK_PLUG], [
	AC_MSG_CHECKING([whether struct blk_plug is available])
	ZFS_LINUX_TEST_RESULT([blk_plug], [
		AC_MSG_RESULT(yes)
		AC_DEFINE(HAVE_BLK_QUEUE_HAVE_BLK_PLUG, 1,
		    [struct blk_plug is available])
	],[
		AC_MSG_RESULT(no)
	])
])

AC_DEFUN([ZFS_AC_KERNEL_SRC_BLK_QUEUE_PLUG], [
	ZFS_AC_KERNEL_SRC_BIO_RW_UNPLUG
	ZFS_AC_KERNEL_SRC_BLK_PLUG
])

AC_DEFUN([ZFS_AC_KERNEL_BLK_QUEUE_PLUG], [
	ZFS_AC_KERNEL_BIO_RW_UNPLUG
	ZFS_AC_KERNEL_BLK_PLUG
])