aboutsummaryrefslogtreecommitdiffstats
path: root/sctp-test/0001-disable-the-use-of-scheduler-priorities-and-mlockall.patch
blob: 9a121167d16493ea519a7b79a67e9bddbacf6bfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
From f3635ca581643f489836f6c603c9888ab7595c36 Mon Sep 17 00:00:00 2001
From: Harald Welte <laforge@gnumonks.org>
Date: Wed, 3 May 2017 22:31:53 +0200
Subject: [PATCH] disable the use of scheduler priorities and mlockall

This doesn't work inside of docker, so let's disable it
---
 gtests/net/packetdrill/run.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gtests/net/packetdrill/run.c b/gtests/net/packetdrill/run.c
index 54f4ebb..66a4c07 100644
--- a/gtests/net/packetdrill/run.c
+++ b/gtests/net/packetdrill/run.c
@@ -439,7 +439,7 @@ void set_scheduling_priority(void)
 	if (num_cpus <= 1)
 		return;
 
-#if !defined(__OpenBSD__)
+#if 0
 	/* Chose a real-time policy, but use SCHED_RR instead of
 	 * SCHED_FIFO, so that we round-robin among real-time threads
 	 * of the same priority. In practice this shouldn't matter,
@@ -466,8 +466,10 @@ void set_scheduling_priority(void)
  */
 void lock_memory(void)
 {
+#if 0
 	if (mlockall(MCL_CURRENT | MCL_FUTURE))
 		die_perror("lockall(MCL_CURRENT | MCL_FUTURE)");
+#endif
 }
 
 /* Wait for and return the wall time at which we should start the
-- 
2.11.0