Notable upstream pull request merges: #11652 Split dmu_zfetch() speculation and execution parts #11682 Fix zfs_get_data access to files with wrong generation #11735 Clean up RAIDZ/DRAID ereport code #11737 Initialize metaslab range trees in metaslab_init #11739 FreeBSD: make seqc asserts conditional on replay #11763 Allow setting bootfs property on pools with indirect vdevs #11767 FreeBSD: Fix memory leaks in kstats Obtained from: OpenZFS MFC after: 2 weeks
54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
Plaintext
AC_DEFUN([ZFS_AC_KERNEL_SRC_CREATE], [
|
|
dnl #
|
|
dnl # 5.12 API change that added the struct user_namespace* arg
|
|
dnl # to the front of this function type's arg list.
|
|
dnl #
|
|
ZFS_LINUX_TEST_SRC([create_userns], [
|
|
#include <linux/fs.h>
|
|
#include <linux/sched.h>
|
|
|
|
int inode_create(struct user_namespace *userns,
|
|
struct inode *inode ,struct dentry *dentry,
|
|
umode_t umode, bool flag) { return 0; }
|
|
|
|
static const struct inode_operations
|
|
iops __attribute__ ((unused)) = {
|
|
.create = inode_create,
|
|
};
|
|
],[])
|
|
|
|
dnl #
|
|
dnl # 3.6 API change
|
|
dnl #
|
|
ZFS_LINUX_TEST_SRC([create_flags], [
|
|
#include <linux/fs.h>
|
|
#include <linux/sched.h>
|
|
|
|
int inode_create(struct inode *inode ,struct dentry *dentry,
|
|
umode_t umode, bool flag) { return 0; }
|
|
|
|
static const struct inode_operations
|
|
iops __attribute__ ((unused)) = {
|
|
.create = inode_create,
|
|
};
|
|
],[])
|
|
])
|
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_CREATE], [
|
|
AC_MSG_CHECKING([whether iops->create() takes struct user_namespace*])
|
|
ZFS_LINUX_TEST_RESULT([create_userns], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_IOPS_CREATE_USERNS, 1,
|
|
[iops->create() takes struct user_namespace*])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
|
|
AC_MSG_CHECKING([whether iops->create() passes flags])
|
|
ZFS_LINUX_TEST_RESULT([create_flags], [
|
|
AC_MSG_RESULT(yes)
|
|
],[
|
|
ZFS_LINUX_TEST_ERROR([iops->create()])
|
|
])
|
|
])
|
|
])
|