summaryrefslogtreecommitdiffstats
path: root/config/kernel-current_bio_tail.m4
blob: 9dfc3e6e0da31b67115171229d91630e3ec42a48 (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
dnl #
dnl # 2.6.34 API change
dnl # current->bio_tail and current->bio_list were struct bio pointers prior to
dnl # Linux 2.6.34. They were refactored into a struct bio_list pointer called
dnl # current->bio_list in Linux 2.6.34.
dnl #
AC_DEFUN([ZFS_AC_KERNEL_SRC_CURRENT_BIO_TAIL], [
	ZFS_LINUX_TEST_SRC([current_bio_tail], [
		#include <linux/sched.h>
	], [
		current->bio_tail = (struct bio **) NULL;
	])

	ZFS_LINUX_TEST_SRC([current_bio_list], [
		#include <linux/sched.h>
	], [
		current->bio_list = (struct bio_list *) NULL;
	])
])

AC_DEFUN([ZFS_AC_KERNEL_CURRENT_BIO_TAIL], [
	AC_MSG_CHECKING([whether current->bio_tail exists])
	ZFS_LINUX_TEST_RESULT([current_bio_tail], [
		AC_MSG_RESULT(yes)
		AC_DEFINE(HAVE_CURRENT_BIO_TAIL, 1,
		    [current->bio_tail exists])
	],[
		AC_MSG_RESULT(no)

		AC_MSG_CHECKING([whether current->bio_list exists])
		ZFS_LINUX_TEST_RESULT([current_bio_list], [
			AC_MSG_RESULT(yes)
			AC_DEFINE(HAVE_CURRENT_BIO_LIST, 1,
			    [current->bio_list exists])
		],[
			ZFS_LINUX_TEST_ERROR([bio_list])
		])
	])
])