Linux 5.7 compat: Include linux/sched.h in spl/sys/mutex.h
struct task_struct is needed for lockdep_off() in mutex.h This has popped up after e616cb8daadf (in linux-5.7-rc7). Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Pavel Snajdr <snajpa@snajpa.net> Closes #10741
This commit is contained in:
parent
f2c027bd6a
commit
772c69d230
|
@ -26,6 +26,7 @@
|
||||||
#define _SPL_MUTEX_H
|
#define _SPL_MUTEX_H
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
#include <linux/sched.h>
|
||||||
#include <linux/mutex.h>
|
#include <linux/mutex.h>
|
||||||
#include <linux/lockdep.h>
|
#include <linux/lockdep.h>
|
||||||
#include <linux/compiler_compat.h>
|
#include <linux/compiler_compat.h>
|
||||||
|
|
Loading…
Reference in New Issue