aboutsummaryrefslogtreecommitdiffstats
path: root/config/kernel-percpu.m4
blob: 5125dd5c5bb8d6a2a68839901f98359fe1cedf3c (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
dnl #
dnl # 3.18 API change,
dnl # The function percpu_counter_init now must be passed a GFP mask.
dnl #
AC_DEFUN([ZFS_AC_KERNEL_SRC_PERCPU_COUNTER_INIT], [
	ZFS_LINUX_TEST_SRC([percpu_counter_init_with_gfp], [
		#include <linux/gfp.h>
		#include <linux/percpu_counter.h>
	],[
		struct percpu_counter counter;
		int error;

		error = percpu_counter_init(&counter, 0, GFP_KERNEL);
	])
])

AC_DEFUN([ZFS_AC_KERNEL_PERCPU_COUNTER_INIT], [
	AC_MSG_CHECKING([whether percpu_counter_init() wants gfp_t])
	ZFS_LINUX_TEST_RESULT([percpu_counter_init_with_gfp], [
		AC_MSG_RESULT(yes)
		AC_DEFINE(HAVE_PERCPU_COUNTER_INIT_WITH_GFP, 1,
		    [percpu_counter_init() wants gfp_t])
	],[
		AC_MSG_RESULT(no)
	])
])

dnl #
dnl # 4.13 API change,
dnl # __percpu_counter_add() was renamed to percpu_counter_add_batch().
dnl #
AC_DEFUN([ZFS_AC_KERNEL_SRC_PERCPU_COUNTER_ADD_BATCH], [
	ZFS_LINUX_TEST_SRC([percpu_counter_add_batch], [
		#include <linux/percpu_counter.h>
	],[
		struct percpu_counter counter;

		percpu_counter_add_batch(&counter, 1, 1);
	])
])

AC_DEFUN([ZFS_AC_KERNEL_PERCPU_COUNTER_ADD_BATCH], [
	AC_MSG_CHECKING([whether percpu_counter_add_batch() is defined])
	ZFS_LINUX_TEST_RESULT([percpu_counter_add_batch], [
		AC_MSG_RESULT(yes)
		AC_DEFINE(HAVE_PERCPU_COUNTER_ADD_BATCH, 1,
		    [percpu_counter_add_batch() is defined])
	],[
		AC_MSG_RESULT(no)
	])
])

dnl #
dnl # 5.10 API change,
dnl # The "count" was moved into ref->data, from ref
dnl #
AC_DEFUN([ZFS_AC_KERNEL_SRC_PERCPU_REF_COUNT_IN_DATA], [
	ZFS_LINUX_TEST_SRC([percpu_ref_count_in_data], [
		#include <linux/percpu-refcount.h>
	],[
		struct percpu_ref_data d;

		atomic_long_set(&d.count, 1L);
	])
])

AC_DEFUN([ZFS_AC_KERNEL_PERCPU_REF_COUNT_IN_DATA], [
	AC_MSG_CHECKING([whether is inside percpu_ref.data])
	ZFS_LINUX_TEST_RESULT([percpu_ref_count_in_data], [
		AC_MSG_RESULT(yes)
		AC_DEFINE(ZFS_PERCPU_REF_COUNT_IN_DATA, 1,
		    [count is located in percpu_ref.data])
	],[
		AC_MSG_RESULT(no)
	])
])
AC_DEFUN([ZFS_AC_KERNEL_SRC_PERCPU], [
	ZFS_AC_KERNEL_SRC_PERCPU_COUNTER_INIT
	ZFS_AC_KERNEL_SRC_PERCPU_COUNTER_ADD_BATCH
	ZFS_AC_KERNEL_SRC_PERCPU_REF_COUNT_IN_DATA
])

AC_DEFUN([ZFS_AC_KERNEL_PERCPU], [
	ZFS_AC_KERNEL_PERCPU_COUNTER_INIT
	ZFS_AC_KERNEL_PERCPU_COUNTER_ADD_BATCH
	ZFS_AC_KERNEL_PERCPU_REF_COUNT_IN_DATA
])