diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2021-01-12 15:49:33 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-01-19 18:27:21 +0100 |
commit | ccd903e26750b92c4cbb1bec0a451f8002838059 (patch) | |
tree | 54be376b3f20ff6c753469a67e12c9b06ef3e8d0 /mm | |
parent | d3e43af7c61f1a6396e7d1a3bc3e76b8fd96bfca (diff) | |
download | linux-stable-ccd903e26750b92c4cbb1bec0a451f8002838059.tar.gz linux-stable-ccd903e26750b92c4cbb1bec0a451f8002838059.tar.bz2 linux-stable-ccd903e26750b92c4cbb1bec0a451f8002838059.zip |
mm/process_vm_access.c: include compat.h
commit eb351d75ce1e75b4f793d609efac08426ca50acd upstream.
Fix the build error:
mm/process_vm_access.c:277:5: error: implicit declaration of function 'in_compat_syscall'; did you mean 'in_ia32_syscall'? [-Werror=implicit-function-declaration]
Fixes: 38dc5079da7081e "Fix compat regression in process_vm_rw()"
Reported-by: syzbot+5b0d0de84d6c65b8dd2b@syzkaller.appspotmail.com
Cc: Kyle Huey <me@kylehuey.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Christoph Hellwig <hch@lst.de>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/process_vm_access.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/process_vm_access.c b/mm/process_vm_access.c index 702250f148e7..c90d722c6181 100644 --- a/mm/process_vm_access.c +++ b/mm/process_vm_access.c @@ -9,6 +9,7 @@ #include <linux/mm.h> #include <linux/uio.h> #include <linux/sched.h> +#include <linux/compat.h> #include <linux/sched/mm.h> #include <linux/highmem.h> #include <linux/ptrace.h> |