diff options
author | David Hildenbrand <david@redhat.com> | 2021-04-22 12:08:20 +0200 |
---|---|---|
committer | David Hildenbrand <david@redhat.com> | 2021-09-03 18:42:01 +0200 |
commit | 8d0920bde5eb8ec7e567939b85e65a0596c8580d (patch) | |
tree | cdba733cd679ff5527daab0e8303a4da97adec4b /lib/test_printf.c | |
parent | 4589ff7ca81516381393649dec8dd4948884b2b2 (diff) | |
download | linux-stable-8d0920bde5eb8ec7e567939b85e65a0596c8580d.tar.gz linux-stable-8d0920bde5eb8ec7e567939b85e65a0596c8580d.tar.bz2 linux-stable-8d0920bde5eb8ec7e567939b85e65a0596c8580d.zip |
mm: remove VM_DENYWRITE
All in-tree users of MAP_DENYWRITE are gone. MAP_DENYWRITE cannot be
set from user space, so all users are gone; let's remove it.
Acked-by: "Eric W. Biederman" <ebiederm@xmission.com>
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: David Hildenbrand <david@redhat.com>
Diffstat (limited to 'lib/test_printf.c')
-rw-r--r-- | lib/test_printf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/test_printf.c b/lib/test_printf.c index 8ac71aee46af..8a48b61c3763 100644 --- a/lib/test_printf.c +++ b/lib/test_printf.c @@ -675,9 +675,8 @@ flags(void) "uptodate|dirty|lru|active|swapbacked", cmp_buffer); - flags = VM_READ | VM_EXEC | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC - | VM_DENYWRITE; - test("read|exec|mayread|maywrite|mayexec|denywrite", "%pGv", &flags); + flags = VM_READ | VM_EXEC | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC; + test("read|exec|mayread|maywrite|mayexec", "%pGv", &flags); gfp = GFP_TRANSHUGE; test("GFP_TRANSHUGE", "%pGg", &gfp); |