#include <linux/kernel.h>
 #include <linux/zalloc.h>
 #include <sys/time.h>
+#include <sys/mman.h>
 #include <perf/cpumap.h>
 
 #include "../util/stat.h"
        OPT_UINTEGER('f', "futexes", ¶ms.nfutexes, "Specify amount of futexes per threads"),
        OPT_BOOLEAN( 's', "silent",  ¶ms.silent, "Silent mode: do not display data/details"),
        OPT_BOOLEAN( 'S', "shared",  ¶ms.fshared, "Use shared futexes instead of private ones"),
+       OPT_BOOLEAN( 'm', "mlockall", ¶ms.mlockall, "Lock all current and future memory"),
        OPT_END()
 };
 
        act.sa_sigaction = toggle_done;
        sigaction(SIGINT, &act, NULL);
 
+       if (params.mlockall) {
+               if (mlockall(MCL_CURRENT | MCL_FUTURE))
+                       err(EXIT_FAILURE, "mlockall");
+       }
+
        if (!params.nthreads) /* default to the number of CPUs */
                params.nthreads = cpu->nr;
 
 
 #include <err.h>
 #include <stdlib.h>
 #include <sys/time.h>
+#include <sys/mman.h>
 
 struct worker {
        int tid;
        OPT_BOOLEAN( 'M', "multi",   ¶ms.multi, "Use multiple futexes"),
        OPT_BOOLEAN( 's', "silent",  ¶ms.silent, "Silent mode: do not display data/details"),
        OPT_BOOLEAN( 'S', "shared",  ¶ms.fshared, "Use shared futexes instead of private ones"),
+       OPT_BOOLEAN( 'm', "mlockall", ¶ms.mlockall, "Lock all current and future memory"),
        OPT_END()
 };
 
        act.sa_sigaction = toggle_done;
        sigaction(SIGINT, &act, NULL);
 
+       if (params.mlockall) {
+               if (mlockall(MCL_CURRENT | MCL_FUTURE))
+                       err(EXIT_FAILURE, "mlockall");
+       }
+
        if (!params.nthreads)
                params.nthreads = cpu->nr;
 
 
 #include <err.h>
 #include <stdlib.h>
 #include <sys/time.h>
+#include <sys/mman.h>
 
 static u_int32_t futex1 = 0, futex2 = 0;
 
        OPT_UINTEGER('q', "nrequeue", ¶ms.nrequeue, "Specify amount of threads to requeue at once"),
        OPT_BOOLEAN( 's', "silent",   ¶ms.silent, "Silent mode: do not display data/details"),
        OPT_BOOLEAN( 'S', "shared",   ¶ms.fshared, "Use shared futexes instead of private ones"),
+       OPT_BOOLEAN( 'm', "mlockall", ¶ms.mlockall, "Lock all current and future memory"),
        OPT_END()
 };
 
        act.sa_sigaction = toggle_done;
        sigaction(SIGINT, &act, NULL);
 
+       if (params.mlockall) {
+               if (mlockall(MCL_CURRENT | MCL_FUTURE))
+                       err(EXIT_FAILURE, "mlockall");
+       }
+
        if (!params.nthreads)
                params.nthreads = cpu->nr;
 
 
 #include <err.h>
 #include <stdlib.h>
 #include <sys/time.h>
+#include <sys/mman.h>
 
 struct thread_data {
        pthread_t worker;
        OPT_UINTEGER('w', "nwakers", ¶ms.nwakes, "Specify amount of waking threads"),
        OPT_BOOLEAN( 's', "silent",  ¶ms.silent, "Silent mode: do not display data/details"),
        OPT_BOOLEAN( 'S', "shared",  ¶ms.fshared, "Use shared futexes instead of private ones"),
+       OPT_BOOLEAN( 'm', "mlockall", ¶ms.mlockall, "Lock all current and future memory"),
+
        OPT_END()
 };
 
        act.sa_sigaction = toggle_done;
        sigaction(SIGINT, &act, NULL);
 
+       if (params.mlockall) {
+               if (mlockall(MCL_CURRENT | MCL_FUTURE))
+                       err(EXIT_FAILURE, "mlockall");
+       }
+
        cpu = perf_cpu_map__new(NULL);
        if (!cpu)
                err(EXIT_FAILURE, "calloc");
 
 #include <err.h>
 #include <stdlib.h>
 #include <sys/time.h>
+#include <sys/mman.h>
 
 /* all threads will block on the same futex */
 static u_int32_t futex1 = 0;
        OPT_UINTEGER('w', "nwakes",  ¶ms.nwakes, "Specify amount of threads to wake at once"),
        OPT_BOOLEAN( 's', "silent",  ¶ms.silent, "Silent mode: do not display data/details"),
        OPT_BOOLEAN( 'S', "shared",  ¶ms.fshared, "Use shared futexes instead of private ones"),
+       OPT_BOOLEAN( 'm', "mlockall", ¶ms.mlockall, "Lock all current and future memory"),
+
        OPT_END()
 };
 
        act.sa_sigaction = toggle_done;
        sigaction(SIGINT, &act, NULL);
 
+       if (params.mlockall) {
+               if (mlockall(MCL_CURRENT | MCL_FUTURE))
+                       err(EXIT_FAILURE, "mlockall");
+       }
+
        if (!params.nthreads)
                params.nthreads = cpu->nr;
 
 
 struct bench_futex_parameters {
        bool silent;
        bool fshared;
+       bool mlockall;
        bool multi; /* lock-pi */
        unsigned int runtime; /* seconds*/
        unsigned int nthreads;