Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e7fd3551 authored by Chukun Pan's avatar Chukun Pan Committed by Namjae Jeon
Browse files

exfat: further fix 'fatal_signal_pending' undeclared



Make sure to include the header file that defines this function.

Fixes: 19b70873 ("exfat: fix build on x86 with 4.19 kernel")
Signed-off-by: default avatarChukun Pan <amadeus@jmu.edu.cn>
Signed-off-by: default avatarNamjae Jeon <linkinjeon@kernel.org>
parent 8d7603af
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -7,8 +7,10 @@
#include <linux/blkdev.h>
#include <linux/slab.h>
#include <linux/buffer_head.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 19, 0)
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
#include <linux/sched/signal.h>
#else
#include <linux/sched.h>
#endif

#include "exfat_raw.h"