2013-08-07 16:53:45 +04:00
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_VFS_ITERATE], [
|
2016-05-19 00:30:20 +03:00
|
|
|
dnl #
|
|
|
|
dnl # 4.7 API change
|
|
|
|
dnl #
|
|
|
|
AC_MSG_CHECKING([whether fops->iterate_shared() is available])
|
2013-08-07 16:53:45 +04:00
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/fs.h>
|
|
|
|
int iterate(struct file *filp, struct dir_context * context)
|
|
|
|
{ return 0; }
|
|
|
|
|
|
|
|
static const struct file_operations fops
|
|
|
|
__attribute__ ((unused)) = {
|
2016-05-19 00:30:20 +03:00
|
|
|
.iterate_shared = iterate,
|
2013-08-07 16:53:45 +04:00
|
|
|
};
|
|
|
|
],[
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
2016-05-19 00:30:20 +03:00
|
|
|
AC_DEFINE(HAVE_VFS_ITERATE_SHARED, 1,
|
|
|
|
[fops->iterate_shared() is available])
|
2013-08-07 16:53:45 +04:00
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
|
2016-05-19 00:30:20 +03:00
|
|
|
dnl #
|
|
|
|
dnl # 3.11 API change
|
|
|
|
dnl #
|
|
|
|
AC_MSG_CHECKING([whether fops->iterate() is available])
|
2013-08-07 16:53:45 +04:00
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/fs.h>
|
2016-05-19 00:30:20 +03:00
|
|
|
int iterate(struct file *filp, struct dir_context * context)
|
2013-08-07 16:53:45 +04:00
|
|
|
{ return 0; }
|
|
|
|
|
|
|
|
static const struct file_operations fops
|
|
|
|
__attribute__ ((unused)) = {
|
2016-05-19 00:30:20 +03:00
|
|
|
.iterate = iterate,
|
2013-08-07 16:53:45 +04:00
|
|
|
};
|
|
|
|
],[
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
2016-05-19 00:30:20 +03:00
|
|
|
AC_DEFINE(HAVE_VFS_ITERATE, 1,
|
|
|
|
[fops->iterate() is available])
|
2013-08-07 16:53:45 +04:00
|
|
|
],[
|
2016-05-19 00:30:20 +03:00
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([whether fops->readdir() is available])
|
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/fs.h>
|
|
|
|
int readdir(struct file *filp, void *entry, filldir_t func)
|
|
|
|
{ return 0; }
|
2013-08-07 16:53:45 +04:00
|
|
|
|
2016-05-19 00:30:20 +03:00
|
|
|
static const struct file_operations fops
|
|
|
|
__attribute__ ((unused)) = {
|
|
|
|
.readdir = readdir,
|
|
|
|
};
|
|
|
|
],[
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_VFS_READDIR, 1,
|
|
|
|
[fops->readdir() is available])
|
|
|
|
],[
|
|
|
|
AC_MSG_ERROR(no; file a bug report with ZFSOnLinux)
|
|
|
|
])
|
|
|
|
])
|
2013-08-07 16:53:45 +04:00
|
|
|
])
|
|
|
|
])
|