aboutsummaryrefslogtreecommitdiff
path: root/config/kernel-inode-getattr.m4
blob: 48391d66f8bd76c8419902113f943dea47a2a0df (plain) (blame)
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
dnl #
dnl # Linux 4.11 API
dnl # See torvalds/linux@a528d35
dnl #
AC_DEFUN([ZFS_AC_KERNEL_SRC_INODE_GETATTR], [
	ZFS_LINUX_TEST_SRC([inode_operations_getattr_path], [
		#include <linux/fs.h>

		int test_getattr(
		    const struct path *p, struct kstat *k,
		    u32 request_mask, unsigned int query_flags)
		    { return 0; }

		static const struct inode_operations
		    iops __attribute__ ((unused)) = {
			.getattr = test_getattr,
		};
	],[])

	ZFS_LINUX_TEST_SRC([inode_operations_getattr_vfsmount], [
		#include <linux/fs.h>

		int test_getattr(
		    struct vfsmount *mnt, struct dentry *d,
		    struct kstat *k)
		    { return 0; }

		static const struct inode_operations
		    iops __attribute__ ((unused)) = {
			.getattr = test_getattr,
		};
	],[])
])

AC_DEFUN([ZFS_AC_KERNEL_INODE_GETATTR], [
	AC_MSG_CHECKING([whether iops->getattr() takes a path])
	ZFS_LINUX_TEST_RESULT([inode_operations_getattr_path], [
		AC_MSG_RESULT(yes)
		AC_DEFINE(HAVE_PATH_IOPS_GETATTR, 1,
		    [iops->getattr() takes a path])
	],[
		AC_MSG_RESULT(no)

		AC_MSG_CHECKING([whether iops->getattr() takes a vfsmount])
		ZFS_LINUX_TEST_RESULT([inode_operations_getattr_vfsmount], [
			AC_MSG_RESULT(yes)
			AC_DEFINE(HAVE_VFSMOUNT_IOPS_GETATTR, 1,
			    [iops->getattr() takes a vfsmount])
		],[
			AC_MSG_RESULT(no)
		])
	])
])