summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Dossche <dossche.niels@gmail.com>2022-05-10 04:20:54 +0300
committerAndrew Morton <akpm@linux-foundation.org>2022-05-13 17:20:07 +0300
commit9994715333515e82865e533250e488496b9742f4 (patch)
tree38b45b57280fd42ac9af21e6d11178a4a7c46bd0
parentdd0623020e0d068d5eba0c37d5ae1277800b49c4 (diff)
downloadlinux-9994715333515e82865e533250e488496b9742f4.tar.xz
selftest/vm: test that mremap fails on non-existent vma
Add a regression test that validates that mremap fails for vma's that don't exist. Link: https://lkml.kernel.org/r/20220427224439.23828-3-dossche.niels@gmail.com Signed-off-by: Niels Dossche <dossche.niels@gmail.com> Cc: Mina Almasry <almasrymina@google.com> Cc: Mike Kravetz <mike.kravetz@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r--tools/testing/selftests/vm/hugepage-mremap.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/testing/selftests/vm/hugepage-mremap.c b/tools/testing/selftests/vm/hugepage-mremap.c
index 1d689084a54b..585978f181ed 100644
--- a/tools/testing/selftests/vm/hugepage-mremap.c
+++ b/tools/testing/selftests/vm/hugepage-mremap.c
@@ -178,6 +178,12 @@ int main(int argc, char *argv[])
munmap(addr, length);
+ addr = mremap(addr, length, length, 0);
+ if (addr != MAP_FAILED) {
+ printf("mremap: Expected failure, but call succeeded\n");
+ exit(1);
+ }
+
close(fd);
unlink(argv[argc-1]);