diff options
author | Niels Dossche <[email protected]> | 2022-05-09 18:20:54 -0700 |
---|---|---|
committer | Andrew Morton <[email protected]> | 2022-05-13 07:20:07 -0700 |
commit | 9994715333515e82865e533250e488496b9742f4 (patch) | |
tree | 38b45b57280fd42ac9af21e6d11178a4a7c46bd0 | |
parent | dd0623020e0d068d5eba0c37d5ae1277800b49c4 (diff) |
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/[email protected]
Signed-off-by: Niels Dossche <[email protected]>
Cc: Mina Almasry <[email protected]>
Cc: Mike Kravetz <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r-- | tools/testing/selftests/vm/hugepage-mremap.c | 6 |
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]); |