summaryrefslogtreecommitdiffstats
path: root/config/kernel-bdi-setup-and-register.m4
blob: 4196091e91bea70a89ae63201715f075e786b46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
dnl #
dnl # 2.6.34 API change
dnl # The bdi_setup_and_register() helper function is avilable and
dnl # exported by the kernel.  This is a trivial helper function but
dnl # using it significantly simplifies the code surrounding setting
dnl # up and tearing down the bdi structure.
dnl #
AC_DEFUN([ZFS_AC_KERNEL_BDI_SETUP_AND_REGISTER],
	[AC_MSG_CHECKING([whether bdi_setup_and_register() is available])
	ZFS_LINUX_TRY_COMPILE_SYMBOL([
		#include <linux/backing-dev.h>
	], [
		bdi_setup_and_register(NULL, NULL, 0);
	], [bdi_setup_and_register], [mm/backing-dev.c], [
		AC_MSG_RESULT(yes)
		AC_DEFINE(HAVE_BDI_SETUP_AND_REGISTER, 1,
		          [bdi_setup_and_register() is available])
	], [
		AC_MSG_RESULT(no)
	])
])