diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2019-05-13 11:24:17 +1000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2019-05-12 23:23:34 -0500 |
commit | 14e25977f98887f1f99c3ce7537a7674aab3cbdd (patch) | |
tree | 6ea268cda003af32442fc401f592d293d6494eb4 /fs | |
parent | d1c35afb0892fc8b334ee0ce0902155d2cfb118c (diff) | |
download | linux-14e25977f98887f1f99c3ce7537a7674aab3cbdd.tar.gz linux-14e25977f98887f1f99c3ce7537a7674aab3cbdd.tar.bz2 linux-14e25977f98887f1f99c3ce7537a7674aab3cbdd.zip |
cifs: use the right include for signal_pending()
This header is actually where signal_pending is defined
although either would work.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c index 9a16ff4b9f5e..60661b3f983a 100644 --- a/fs/cifs/transport.c +++ b/fs/cifs/transport.c @@ -33,7 +33,7 @@ #include <linux/uaccess.h> #include <asm/processor.h> #include <linux/mempool.h> -#include <linux/signal.h> +#include <linux/sched/signal.h> #include "cifspdu.h" #include "cifsglob.h" #include "cifsproto.h" |