@@ -2379,6 +2379,18 @@ else
pty_h=no
fi
+cat > $TMPC <<EOF
+#include <sys/mman.h>
+int main(int argc, char *argv[]) {
+ return mlockall(MCL_FUTURE);
+}
+EOF
+if compile_prog "" "" ; then
+ have_mlockall=yes
+else
+ have_mlockall=no
+fi
+
#########################################
# vhost interdependencies and host support
@@ -7767,6 +7779,9 @@ fi
if test "$pty_h" = "yes" ; then
echo "CONFIG_PTY=y" >> $config_host_mak
fi
+if test "$have_mlockall" = "yes" ; then
+ echo "CONFIG_MLOCKALL=y" >> $config_host_mak
+fi
if test "$fuzzing" = "yes" ; then
if test "$have_fuzzer" = "yes"; then
FUZZ_LDFLAGS=" -fsanitize=address,fuzzer"
@@ -337,6 +337,7 @@ bool is_daemonized(void)
int os_mlock(void)
{
+#if defined CONFIG_MLOCKALL
int ret = 0;
ret = mlockall(MCL_CURRENT | MCL_FUTURE);
@@ -345,4 +346,7 @@ int os_mlock(void)
}
return ret;
+#else
+ return -ENOSYS;
+#endif
}