summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ltp/ltp/0001-getrlimit03-adjust-a-bit-of-code-to-compatiable-with.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/ltp/ltp/0001-getrlimit03-adjust-a-bit-of-code-to-compatiable-with.patch')
-rw-r--r--meta/recipes-extended/ltp/ltp/0001-getrlimit03-adjust-a-bit-of-code-to-compatiable-with.patch62
1 files changed, 62 insertions, 0 deletions
diff --git a/meta/recipes-extended/ltp/ltp/0001-getrlimit03-adjust-a-bit-of-code-to-compatiable-with.patch b/meta/recipes-extended/ltp/ltp/0001-getrlimit03-adjust-a-bit-of-code-to-compatiable-with.patch
new file mode 100644
index 0000000000..7b662294f3
--- /dev/null
+++ b/meta/recipes-extended/ltp/ltp/0001-getrlimit03-adjust-a-bit-of-code-to-compatiable-with.patch
@@ -0,0 +1,62 @@
1From e79652a3839869b1983d65999e5d5dcb50bc9cd7 Mon Sep 17 00:00:00 2001
2From: "Hongzhi.Song" <hongzhi.song@windriver.com>
3Date: Mon, 15 Jul 2019 03:39:06 -0400
4Subject: [PATCH] getrlimit03: adjust a bit of code to compatiable with mips32
5
6Error info:
7getrlimit03.c:104: FAIL: __NR_prlimit64(0) had rlim_cur =
8ffffffffffffffff but __NR_getrlimit(0) had rlim_cur = 7fffffff
9
10According to kernel code: [arch/mips/include/uapi/asm/resource.h]
11RLIM_INFINITY is set to 0x7fffffffUL instead of ULONG_MAX on mips32.
12
13 /*
14 * SuS says limits have to be unsigned.
15 * Which makes a ton more sense anyway,
16 * but we keep the old value on MIPS32,
17 * for compatibility:
18 */
19 #ifndef __mips64
20 # define RLIM_INFINITY 0x7fffffffUL
21 #endif
22
23Adding conditional statement about mips to fix this.
24
25Signed-off-by: Jan Stancek <jstancek@redhat.com>
26Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com>
27
28Upstream-Status: Backport
29Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com>
30---
31 testcases/kernel/syscalls/getrlimit/getrlimit03.c | 8 +++++++-
32 1 file changed, 7 insertions(+), 1 deletion(-)
33
34diff --git a/testcases/kernel/syscalls/getrlimit/getrlimit03.c b/testcases/kernel/syscalls/getrlimit/getrlimit03.c
35index e4d56c4..03bd821 100644
36--- a/testcases/kernel/syscalls/getrlimit/getrlimit03.c
37+++ b/testcases/kernel/syscalls/getrlimit/getrlimit03.c
38@@ -26,6 +26,7 @@
39
40 #include "tst_test.h"
41 #include "lapi/syscalls.h"
42+#include "lapi/abisize.h"
43
44 /**
45 * Linux provides an "old" getrlimit syscall handler that uses signed long,
46@@ -61,7 +62,12 @@ struct rlimit_ulong {
47 unsigned long rlim_cur;
48 unsigned long rlim_max;
49 };
50-const unsigned long RLIM_INFINITY_UL = ULONG_MAX;
51+
52+#if defined(__mips__) && defined(TST_ABI32)
53+ const unsigned long RLIM_INFINITY_UL = 0x7fffffffUL;
54+#else
55+ const unsigned long RLIM_INFINITY_UL = ULONG_MAX;
56+#endif
57
58 static int getrlimit_ulong(int resource, struct rlimit_ulong *rlim)
59 {
60--
612.8.1
62