config: remove HAVE_SCHED_SIGNAL_HEADER
Sponsored-by: https://despairlabs.com/sponsor/ Signed-off-by: Rob Norris <robn@despairlabs.com>
This commit is contained in:
parent
8a7387af46
commit
b5737fbcd7
|
@ -20,36 +20,10 @@ AC_DEFUN([ZFS_AC_KERNEL_SCHED_RT_HEADER], [
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
||||||
dnl #
|
|
||||||
dnl # 4.11 API change,
|
|
||||||
dnl # Moved things from linux/sched.h to linux/sched/signal.h
|
|
||||||
dnl #
|
|
||||||
AC_DEFUN([ZFS_AC_KERNEL_SRC_SCHED_SIGNAL_HEADER], [
|
|
||||||
ZFS_LINUX_TEST_SRC([sched_signal_header], [
|
|
||||||
#include <linux/sched.h>
|
|
||||||
#include <linux/sched/signal.h>
|
|
||||||
],[
|
|
||||||
return 0;
|
|
||||||
])
|
|
||||||
])
|
|
||||||
|
|
||||||
AC_DEFUN([ZFS_AC_KERNEL_SCHED_SIGNAL_HEADER], [
|
|
||||||
AC_MSG_CHECKING([whether header linux/sched/signal.h exists])
|
|
||||||
ZFS_LINUX_TEST_RESULT([sched_signal_header], [
|
|
||||||
AC_DEFINE(HAVE_SCHED_SIGNAL_HEADER, 1,
|
|
||||||
[linux/sched/signal.h exists])
|
|
||||||
AC_MSG_RESULT(yes)
|
|
||||||
],[
|
|
||||||
AC_MSG_RESULT(no)
|
|
||||||
])
|
|
||||||
])
|
|
||||||
|
|
||||||
AC_DEFUN([ZFS_AC_KERNEL_SRC_SCHED], [
|
AC_DEFUN([ZFS_AC_KERNEL_SRC_SCHED], [
|
||||||
ZFS_AC_KERNEL_SRC_SCHED_RT_HEADER
|
ZFS_AC_KERNEL_SRC_SCHED_RT_HEADER
|
||||||
ZFS_AC_KERNEL_SRC_SCHED_SIGNAL_HEADER
|
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_DEFUN([ZFS_AC_KERNEL_SCHED], [
|
AC_DEFUN([ZFS_AC_KERNEL_SCHED], [
|
||||||
ZFS_AC_KERNEL_SCHED_RT_HEADER
|
ZFS_AC_KERNEL_SCHED_RT_HEADER
|
||||||
ZFS_AC_KERNEL_SCHED_SIGNAL_HEADER
|
|
||||||
])
|
])
|
||||||
|
|
|
@ -25,10 +25,7 @@
|
||||||
#define _SPL_SIGNAL_H
|
#define _SPL_SIGNAL_H
|
||||||
|
|
||||||
#include <linux/sched.h>
|
#include <linux/sched.h>
|
||||||
|
|
||||||
#ifdef HAVE_SCHED_SIGNAL_HEADER
|
|
||||||
#include <linux/sched/signal.h>
|
#include <linux/sched/signal.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
extern int issig(void);
|
extern int issig(void);
|
||||||
|
|
||||||
|
|
|
@ -31,10 +31,7 @@
|
||||||
#include <linux/mod_compat.h>
|
#include <linux/mod_compat.h>
|
||||||
|
|
||||||
#include <linux/sched.h>
|
#include <linux/sched.h>
|
||||||
|
|
||||||
#ifdef HAVE_SCHED_SIGNAL_HEADER
|
|
||||||
#include <linux/sched/signal.h>
|
#include <linux/sched/signal.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
#define MAX_HRTIMEOUT_SLACK_US 1000
|
#define MAX_HRTIMEOUT_SLACK_US 1000
|
||||||
static unsigned int spl_schedule_hrtimeout_slack_us = 0;
|
static unsigned int spl_schedule_hrtimeout_slack_us = 0;
|
||||||
|
|
Loading…
Reference in New Issue