2016-01-26 23:29:46 +03:00
|
|
|
dnl #
|
|
|
|
dnl # 3.11 API change
|
|
|
|
dnl # Add support for i_op->tmpfile
|
|
|
|
dnl #
|
2019-10-01 22:50:34 +03:00
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_SRC_TMPFILE], [
|
2021-05-21 02:02:36 +03:00
|
|
|
dnl #
|
|
|
|
dnl # 5.11 API change
|
|
|
|
dnl # add support for userns parameter to tmpfile
|
|
|
|
dnl #
|
|
|
|
ZFS_LINUX_TEST_SRC([inode_operations_tmpfile_userns], [
|
2016-01-26 23:29:46 +03:00
|
|
|
#include <linux/fs.h>
|
2021-05-21 02:02:36 +03:00
|
|
|
int tmpfile(struct user_namespace *userns,
|
|
|
|
struct inode *inode, struct dentry *dentry,
|
2016-01-26 23:29:46 +03:00
|
|
|
umode_t mode) { return 0; }
|
|
|
|
static struct inode_operations
|
|
|
|
iops __attribute__ ((unused)) = {
|
|
|
|
.tmpfile = tmpfile,
|
|
|
|
};
|
2019-10-01 22:50:34 +03:00
|
|
|
],[])
|
2021-05-21 02:02:36 +03:00
|
|
|
ZFS_LINUX_TEST_SRC([inode_operations_tmpfile], [
|
|
|
|
#include <linux/fs.h>
|
|
|
|
int tmpfile(struct inode *inode, struct dentry *dentry,
|
|
|
|
umode_t mode) { return 0; }
|
|
|
|
static struct inode_operations
|
|
|
|
iops __attribute__ ((unused)) = {
|
|
|
|
.tmpfile = tmpfile,
|
|
|
|
};
|
|
|
|
],[])
|
2019-10-01 22:50:34 +03:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_TMPFILE], [
|
|
|
|
AC_MSG_CHECKING([whether i_op->tmpfile() exists])
|
2021-05-21 02:02:36 +03:00
|
|
|
ZFS_LINUX_TEST_RESULT([inode_operations_tmpfile_userns], [
|
2016-01-26 23:29:46 +03:00
|
|
|
AC_MSG_RESULT(yes)
|
2019-10-01 22:50:34 +03:00
|
|
|
AC_DEFINE(HAVE_TMPFILE, 1, [i_op->tmpfile() exists])
|
2021-05-21 02:02:36 +03:00
|
|
|
AC_DEFINE(HAVE_TMPFILE_USERNS, 1, [i_op->tmpfile() has userns])
|
2016-01-26 23:29:46 +03:00
|
|
|
],[
|
2021-05-21 02:02:36 +03:00
|
|
|
ZFS_LINUX_TEST_RESULT([inode_operations_tmpfile], [
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_TMPFILE, 1, [i_op->tmpfile() exists])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
2016-01-26 23:29:46 +03:00
|
|
|
])
|
|
|
|
])
|