diff options
| author | He Zhe <zhe.he@windriver.com> | 2019-08-19 21:56:34 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-21 15:29:02 +0100 |
| commit | adac6e9cda6a7306aac8eeee02f57c8158e2fc4c (patch) | |
| tree | c59896bfa8ec15e4709d7bc94c621fbaccab2fc0 | |
| parent | f5a8ce775c803fa406bda378eb174407d365d503 (diff) | |
| download | poky-adac6e9cda6a7306aac8eeee02f57c8158e2fc4c.tar.gz | |
ltp: Fix ustat02 failure
Backport a patch to fix the following failure.
ustat02.c:44: FAIL: ustat(2) failed to produce expected error; 14, errno: EFAULT: EINVAL
(From OE-Core rev: e05f5e1d44293827260541e301ce25d15eb405af)
Signed-off-by: He Zhe <zhe.he@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-extended/ltp/ltp/0001-ustat02-Fix-EFAULT-in-32bit-compatibility-mode.patch | 36 | ||||
| -rw-r--r-- | meta/recipes-extended/ltp/ltp_20190517.bb | 1 |
2 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-extended/ltp/ltp/0001-ustat02-Fix-EFAULT-in-32bit-compatibility-mode.patch b/meta/recipes-extended/ltp/ltp/0001-ustat02-Fix-EFAULT-in-32bit-compatibility-mode.patch new file mode 100644 index 0000000000..c936b788fe --- /dev/null +++ b/meta/recipes-extended/ltp/ltp/0001-ustat02-Fix-EFAULT-in-32bit-compatibility-mode.patch | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | From 156776a3e29491b363fdc9811912e1298655d060 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Steven Price <steven.price@arm.com> | ||
| 3 | Date: Fri, 19 Jul 2019 13:48:17 +0100 | ||
| 4 | Subject: [PATCH] ustat02: Fix EFAULT in 32bit compatibility mode | ||
| 5 | |||
| 6 | The size of dev_t is larger than 32 bits which causes the dev argument | ||
| 7 | to be passed incorrectly. On Arm this means that the EFAULT test case | ||
| 8 | actually returns EINVAL because the device number isn't recognised. | ||
| 9 | |||
| 10 | Signed-off-by: Steven Price <steven.price@arm.com> | ||
| 11 | Acked-by: Li Wang <liwang@redhat.com> | ||
| 12 | |||
| 13 | Upstream-Status: Backport | ||
| 14 | [https://github.com/linux-test-project/ltp/commit/156776a3e29491b363fdc9811912e1298655d060] | ||
| 15 | |||
| 16 | Signed-off-by: He Zhe <zhe.he@windriver.com> | ||
| 17 | --- | ||
| 18 | testcases/kernel/syscalls/ustat/ustat02.c | 2 +- | ||
| 19 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 20 | |||
| 21 | diff --git a/testcases/kernel/syscalls/ustat/ustat02.c b/testcases/kernel/syscalls/ustat/ustat02.c | ||
| 22 | index 9bbe4f3..1a0e9e0 100644 | ||
| 23 | --- a/testcases/kernel/syscalls/ustat/ustat02.c | ||
| 24 | +++ b/testcases/kernel/syscalls/ustat/ustat02.c | ||
| 25 | @@ -36,7 +36,7 @@ int TST_TOTAL = ARRAY_SIZE(tc); | ||
| 26 | |||
| 27 | void run(unsigned int test) | ||
| 28 | { | ||
| 29 | - TEST(tst_syscall(__NR_ustat, *tc[test].dev, tc[test].buf)); | ||
| 30 | + TEST(tst_syscall(__NR_ustat, (unsigned int)*tc[test].dev, tc[test].buf)); | ||
| 31 | |||
| 32 | if ((TST_RET == -1) && (TST_ERR == tc[test].exp_errno)) | ||
| 33 | tst_res(TPASS | TTERRNO, "ustat(2) expected failure"); | ||
| 34 | -- | ||
| 35 | 2.7.4 | ||
| 36 | |||
diff --git a/meta/recipes-extended/ltp/ltp_20190517.bb b/meta/recipes-extended/ltp/ltp_20190517.bb index f6c7de62dd..b0e2f969c7 100644 --- a/meta/recipes-extended/ltp/ltp_20190517.bb +++ b/meta/recipes-extended/ltp/ltp_20190517.bb | |||
| @@ -44,6 +44,7 @@ SRC_URI = "git://github.com/linux-test-project/ltp.git \ | |||
| 44 | file://0001-Add-configure-time-check-for-getdents-getdents64-API.patch \ | 44 | file://0001-Add-configure-time-check-for-getdents-getdents64-API.patch \ |
| 45 | file://0002-check-for-RES_USE_INET6-during-configure.patch \ | 45 | file://0002-check-for-RES_USE_INET6-during-configure.patch \ |
| 46 | file://0001-syscalls-tgkill03-wait-for-defunct-tid-to-get-detach.patch \ | 46 | file://0001-syscalls-tgkill03-wait-for-defunct-tid-to-get-detach.patch \ |
| 47 | file://0001-ustat02-Fix-EFAULT-in-32bit-compatibility-mode.patch \ | ||
| 47 | " | 48 | " |
| 48 | 49 | ||
| 49 | S = "${WORKDIR}/git" | 50 | S = "${WORKDIR}/git" |
