aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/zed/zed.c
diff options
context:
space:
mode:
authorChris Dunlap <[email protected]>2014-04-01 14:21:56 -0700
committerBrian Behlendorf <[email protected]>2014-04-02 13:10:08 -0700
commit518eba14928ddf2c1871d33d4b0cdff7ec45bc23 (patch)
treef931a00f963cc28f339558737970ec8328f0f2b0 /cmd/zed/zed.c
parent904ea2763e6576f6971be4a684e6765aaea5221c (diff)
Replace check for _POSIX_MEMLOCK w/ HAVE_MLOCKALL
zed supports a '-M' cmdline opt to lock all pages in memory via mlockall(). The _POSIX_MEMLOCK define is checked to determine whether this function is supported. The current test assumes mlockall() is supported if _POSIX_MEMLOCK is non-zero. However, this test is insufficient according to mlock(2) and sysconf(3). If _POSIX_MEMLOCK is -1, mlockall() is not supported; but if _POSIX_MEMLOCK is 0, availability must be checked at runtime. This commit adds an autoconf check for mlockall() to user.m4. The zed code block for mlockall() is now guarded with a test for HAVE_MLOCKALL. If defined, mlockall() will be called and its runtime availability checked via its return value. Signed-off-by: Chris Dunlap <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Issue #2
Diffstat (limited to 'cmd/zed/zed.c')
-rw-r--r--cmd/zed/zed.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/cmd/zed/zed.c b/cmd/zed/zed.c
index d2fc0e899..c54a59b0a 100644
--- a/cmd/zed/zed.c
+++ b/cmd/zed/zed.c
@@ -97,10 +97,7 @@ _setup_sig_handlers(void)
static void
_lock_memory(void)
{
-#if ! _POSIX_MEMLOCK
- zed_log_die("Failed to lock memory pages: mlockall() not supported");
-
-#else /* _POSIX_MEMLOCK */
+#if HAVE_MLOCKALL
int i = 0;
const int max_tries = 10;
@@ -114,7 +111,9 @@ _lock_memory(void)
}
zed_log_die("Failed to lock memory pages: %s", strerror(errno));
-#endif /* _POSIX_MEMLOCK */
+#else /* HAVE_MLOCKALL */
+ zed_log_die("Failed to lock memory pages: mlockall() not supported");
+#endif /* HAVE_MLOCKALL */
}
/*