2018-02-07 19:50:24 +00:00
|
|
|
dnl #
|
|
|
|
dnl # 3.9 API change
|
|
|
|
dnl # set_fs_pwd takes const struct path *
|
|
|
|
dnl #
|
2018-02-16 01:53:18 +00:00
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_SET_FS_PWD_WITH_CONST],
|
2018-02-07 19:50:24 +00:00
|
|
|
tmp_flags="$EXTRA_KCFLAGS"
|
|
|
|
EXTRA_KCFLAGS="-Werror"
|
|
|
|
[AC_MSG_CHECKING([whether set_fs_pwd() requires const struct path *])
|
2018-02-16 01:53:18 +00:00
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
2018-02-07 19:50:24 +00:00
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/fs_struct.h>
|
|
|
|
#include <linux/path.h>
|
|
|
|
void (*const set_fs_pwd_func)
|
|
|
|
(struct fs_struct *, const struct path *)
|
|
|
|
= set_fs_pwd;
|
|
|
|
],[
|
|
|
|
return 0;
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_SET_FS_PWD_WITH_CONST, 1,
|
|
|
|
[set_fs_pwd() needs const path *])
|
|
|
|
],[
|
2018-02-16 01:53:18 +00:00
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
2018-02-07 19:50:24 +00:00
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/fs_struct.h>
|
|
|
|
#include <linux/path.h>
|
|
|
|
void (*const set_fs_pwd_func)
|
|
|
|
(struct fs_struct *, struct path *)
|
|
|
|
= set_fs_pwd;
|
|
|
|
],[
|
|
|
|
return 0;
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
],[
|
|
|
|
AC_MSG_ERROR(unknown)
|
|
|
|
])
|
|
|
|
])
|
|
|
|
EXTRA_KCFLAGS="$tmp_flags"
|
|
|
|
])
|