summaryrefslogtreecommitdiffstats
path: root/tools/regression
diff options
context:
space:
mode:
authorbz <bz@FreeBSD.org>2009-10-02 17:53:48 +0000
committerbz <bz@FreeBSD.org>2009-10-02 17:53:48 +0000
commit3b9201546d4cb0748e4d8cdb977fc1e90954b83b (patch)
tree86a174bc4f4d5bdb1e81673e267b3e4852f047c1 /tools/regression
parent3b88ee818730fa4e010b7e0e18f6394ab1b374bf (diff)
downloadFreeBSD-src-3b9201546d4cb0748e4d8cdb977fc1e90954b83b.zip
FreeBSD-src-3b9201546d4cb0748e4d8cdb977fc1e90954b83b.tar.gz
Replace the name of the sysctl to security.bsd.map_at_zero and to be
consistent updated the name of the variable as well, after the change in r197711.
Diffstat (limited to 'tools/regression')
-rw-r--r--tools/regression/mmap/mmap.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/tools/regression/mmap/mmap.c b/tools/regression/mmap/mmap.c
index 34da6b2..14c55a1 100644
--- a/tools/regression/mmap/mmap.c
+++ b/tools/regression/mmap/mmap.c
@@ -36,7 +36,7 @@
const struct tests {
void *addr;
- int ok[2]; /* Depending on security.bsd.mmap_zero {0, !=0}. */
+ int ok[2]; /* Depending on security.bsd.map_at_zero {0, !=0}. */
} tests[] = {
{ (void *)0, { 0, 1 } }, /* Test sysctl. */
{ (void *)1, { 0, 0 } },
@@ -54,37 +54,37 @@ main(void)
{
void *p;
size_t len;
- int i, error, mib[3], mmap_zero;
+ int i, error, mib[3], map_at_zero;
error = 0;
- /* Get the current sysctl value of security.bsd.mmap_zero. */
+ /* Get the current sysctl value of security.bsd.map_at_zero. */
len = sizeof(mib) / sizeof(*mib);
- if (sysctlnametomib("security.bsd.mmap_zero", mib, &len) == -1)
- err(1, "sysctlnametomib(security.bsd.mmap_zero)");
+ if (sysctlnametomib("security.bsd.map_at_zero", mib, &len) == -1)
+ err(1, "sysctlnametomib(security.bsd.map_at_zero)");
- len = sizeof(mmap_zero);
- if (sysctl(mib, 3, &mmap_zero, &len, NULL, 0) == -1)
- err(1, "sysctl(security.bsd.mmap_zero)");
+ len = sizeof(map_at_zero);
+ if (sysctl(mib, 3, &map_at_zero, &len, NULL, 0) == -1)
+ err(1, "sysctl(security.bsd.map_at_zero)");
/* Normalize to 0 or 1 for array access. */
- mmap_zero = !!mmap_zero;
+ map_at_zero = !!map_at_zero;
for (i=0; i < (sizeof(tests) / sizeof(*tests)); i++) {
p = mmap((void *)tests[i].addr, PAGE_SIZE,
PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANON | MAP_FIXED,
-1, 0);
if (p == MAP_FAILED) {
- if (tests[i].ok[mmap_zero] != 0)
+ if (tests[i].ok[map_at_zero] != 0)
error++;
warnx("%s: mmap(%p, ...) failed.",
- (tests[i].ok[mmap_zero] == 0) ? "OK " : "ERR",
+ (tests[i].ok[map_at_zero] == 0) ? "OK " : "ERR",
tests[i].addr);
} else {
- if (tests[i].ok[mmap_zero] != 1)
+ if (tests[i].ok[map_at_zero] != 1)
error++;
warnx("%s: mmap(%p, ...) succeeded: p=%p",
- (tests[i].ok[mmap_zero] == 1) ? "OK " : "ERR",
+ (tests[i].ok[map_at_zero] == 1) ? "OK " : "ERR",
tests[i].addr, p);
}
}
OpenPOWER on IntegriCloud