1 AC_DEFUN([ZFS_AC_KERNEL_SRC_SYMLINK], [
3 dnl # 6.3 API change that changed the first arg
4 dnl # to struct mnt_idmap*
6 ZFS_LINUX_TEST_SRC([symlink_mnt_idmap], [
8 #include <linux/sched.h>
9 static int tmp_symlink(struct mnt_idmap *idmap,
10 struct inode *inode ,struct dentry *dentry,
11 const char *path) { return 0; }
13 static const struct inode_operations
14 iops __attribute__ ((unused)) = {
15 .symlink = tmp_symlink,
19 dnl # 5.12 API change that added the struct user_namespace* arg
20 dnl # to the front of this function type's arg list.
22 ZFS_LINUX_TEST_SRC([symlink_userns], [
24 #include <linux/sched.h>
26 static int tmp_symlink(struct user_namespace *userns,
27 struct inode *inode ,struct dentry *dentry,
28 const char *path) { return 0; }
30 static const struct inode_operations
31 iops __attribute__ ((unused)) = {
32 .symlink = tmp_symlink,
37 AC_DEFUN([ZFS_AC_KERNEL_SYMLINK], [
38 AC_MSG_CHECKING([whether iops->symlink() takes struct mnt_idmap*])
39 ZFS_LINUX_TEST_RESULT([symlink_mnt_idmap], [
41 AC_DEFINE(HAVE_IOPS_SYMLINK_IDMAP, 1,
42 [iops->symlink() takes struct mnt_idmap*])
44 AC_MSG_CHECKING([whether iops->symlink() takes struct user_namespace*])
45 ZFS_LINUX_TEST_RESULT([symlink_userns], [
47 AC_DEFINE(HAVE_IOPS_SYMLINK_USERNS, 1,
48 [iops->symlink() takes struct user_namespace*])