From e7fd35517c7c06be31edf5992a19f8da55c1b8e9 Mon Sep 17 00:00:00 2001 From: Chukun Pan Date: Wed, 18 May 2022 13:42:36 +0900 Subject: [PATCH] exfat: further fix 'fatal_signal_pending' undeclared Make sure to include the header file that defines this function. Fixes: 19b7087 ("exfat: fix build on x86 with 4.19 kernel") Signed-off-by: Chukun Pan Signed-off-by: Namjae Jeon --- balloc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/balloc.c b/balloc.c index 4c2766cc7319..30c2414d859c 100644 --- a/balloc.c +++ b/balloc.c @@ -7,8 +7,10 @@ #include #include #include -#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 19, 0) +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0) #include +#else +#include #endif #include "exfat_raw.h"