2011-02-11 16:58:55 +00:00
|
|
|
dnl #
|
2011-11-10 04:47:59 +00:00
|
|
|
dnl # Linux 2.6.x - 2.6.34 API
|
2011-02-11 16:58:55 +00:00
|
|
|
dnl #
|
2011-11-10 04:47:59 +00:00
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_FSYNC_WITH_DENTRY], [
|
2011-02-11 16:58:55 +00:00
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/fs.h>
|
|
|
|
],[
|
2011-11-10 04:47:59 +00:00
|
|
|
int (*fsync) (struct file *, struct dentry *, int) = NULL;
|
2011-04-19 17:02:21 +00:00
|
|
|
struct file_operations fops __attribute__ ((unused));
|
2011-02-11 16:58:55 +00:00
|
|
|
|
|
|
|
fops.fsync = fsync;
|
|
|
|
],[
|
2011-11-10 04:47:59 +00:00
|
|
|
AC_MSG_RESULT([dentry])
|
|
|
|
AC_DEFINE(HAVE_FSYNC_WITH_DENTRY, 1,
|
|
|
|
[fops->fsync() with dentry])
|
2011-02-11 16:58:55 +00:00
|
|
|
],[
|
|
|
|
])
|
|
|
|
])
|
2011-11-10 04:47:59 +00:00
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # Linux 2.6.35 - Linux 3.0 API
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_FSYNC_WITHOUT_DENTRY], [
|
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/fs.h>
|
|
|
|
],[
|
|
|
|
int (*fsync) (struct file *, int) = NULL;
|
|
|
|
struct file_operations fops __attribute__ ((unused));
|
|
|
|
|
|
|
|
fops.fsync = fsync;
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([no dentry])
|
|
|
|
AC_DEFINE(HAVE_FSYNC_WITHOUT_DENTRY, 1,
|
|
|
|
[fops->fsync() without dentry])
|
|
|
|
],[
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
2012-05-31 03:25:31 +00:00
|
|
|
dnl # Linux 3.1 - 3.x API
|
2011-11-10 04:47:59 +00:00
|
|
|
dnl #
|
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_FSYNC_RANGE], [
|
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/fs.h>
|
|
|
|
],[
|
|
|
|
int (*fsync) (struct file *, loff_t, loff_t, int) = NULL;
|
|
|
|
struct file_operations fops __attribute__ ((unused));
|
|
|
|
|
|
|
|
fops.fsync = fsync;
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([range])
|
|
|
|
AC_DEFINE(HAVE_FSYNC_RANGE, 1,
|
|
|
|
[fops->fsync() with range])
|
|
|
|
],[
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
2012-05-31 03:25:31 +00:00
|
|
|
dnl #
|
|
|
|
dnl # PaX Linux 2.6.x - 2.6.34 API
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([ZFS_AC_PAX_KERNEL_FSYNC_WITH_DENTRY], [
|
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/fs.h>
|
|
|
|
],[
|
|
|
|
int (*fsync) (struct file *, struct dentry *, int) = NULL;
|
|
|
|
file_operations_no_const fops __attribute__ ((unused));
|
|
|
|
|
|
|
|
fops.fsync = fsync;
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([dentry])
|
|
|
|
AC_DEFINE(HAVE_FSYNC_WITH_DENTRY, 1,
|
|
|
|
[fops->fsync() with dentry])
|
|
|
|
],[
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # PaX Linux 2.6.35 - Linux 3.0 API
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([ZFS_AC_PAX_KERNEL_FSYNC_WITHOUT_DENTRY], [
|
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/fs.h>
|
|
|
|
],[
|
|
|
|
int (*fsync) (struct file *, int) = NULL;
|
|
|
|
file_operations_no_const fops __attribute__ ((unused));
|
|
|
|
|
|
|
|
fops.fsync = fsync;
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([no dentry])
|
|
|
|
AC_DEFINE(HAVE_FSYNC_WITHOUT_DENTRY, 1,
|
|
|
|
[fops->fsync() without dentry])
|
|
|
|
],[
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # PaX Linux 3.1 - 3.x API
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([ZFS_AC_PAX_KERNEL_FSYNC_RANGE], [
|
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/fs.h>
|
|
|
|
],[
|
|
|
|
int (*fsync) (struct file *, loff_t, loff_t, int) = NULL;
|
|
|
|
file_operations_no_const fops __attribute__ ((unused));
|
|
|
|
|
|
|
|
fops.fsync = fsync;
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([range])
|
|
|
|
AC_DEFINE(HAVE_FSYNC_RANGE, 1,
|
|
|
|
[fops->fsync() with range])
|
|
|
|
],[
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
2011-11-10 04:47:59 +00:00
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_FSYNC], [
|
|
|
|
AC_MSG_CHECKING([whether fops->fsync() wants])
|
|
|
|
ZFS_AC_KERNEL_FSYNC_WITH_DENTRY
|
|
|
|
ZFS_AC_KERNEL_FSYNC_WITHOUT_DENTRY
|
|
|
|
ZFS_AC_KERNEL_FSYNC_RANGE
|
2012-05-31 03:25:31 +00:00
|
|
|
ZFS_AC_PAX_KERNEL_FSYNC_WITH_DENTRY
|
|
|
|
ZFS_AC_PAX_KERNEL_FSYNC_WITHOUT_DENTRY
|
|
|
|
ZFS_AC_PAX_KERNEL_FSYNC_RANGE
|
2011-11-10 04:47:59 +00:00
|
|
|
])
|