diff options
author | Christoph Hellwig <hch@lst.de> | 2019-08-28 16:19:53 +0200 |
---|---|---|
committer | Jason Gunthorpe <jgg@mellanox.com> | 2019-09-07 04:28:04 -0300 |
commit | a520110e4a15ceb385304d9cab22bb51438f6080 (patch) | |
tree | 8b5ae186c0b10b1906cd1ebebffe3203ec9f9f26 /mm/mprotect.c | |
parent | 810e24e009cf71bf85a1524f272a744c54ca6591 (diff) | |
download | linux-stable-a520110e4a15ceb385304d9cab22bb51438f6080.tar.gz linux-stable-a520110e4a15ceb385304d9cab22bb51438f6080.tar.bz2 linux-stable-a520110e4a15ceb385304d9cab22bb51438f6080.zip |
mm: split out a new pagewalk.h header from mm.h
Add a new header for the two handful of users of the walk_page_range /
walk_page_vma interface instead of polluting all users of mm.h with it.
Link: https://lore.kernel.org/r/20190828141955.22210-2-hch@lst.de
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Steven Price <steven.price@arm.com>
Reviewed-by: Jason Gunthorpe <jgg@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'mm/mprotect.c')
-rw-r--r-- | mm/mprotect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mprotect.c b/mm/mprotect.c index bf38dfbbb4b4..cc73318dbc25 100644 --- a/mm/mprotect.c +++ b/mm/mprotect.c @@ -9,7 +9,7 @@ * (C) Copyright 2002 Red Hat Inc, All Rights Reserved */ -#include <linux/mm.h> +#include <linux/pagewalk.h> #include <linux/hugetlb.h> #include <linux/shm.h> #include <linux/mman.h> |