[LTP] [PATCH] ustat: Fix EFAULT in 32bit compatability mode
Jan Stancek
jstancek@redhat.com
Thu Feb 7 13:16:55 CET 2019
----- Original Message -----
> This test fails with -m32 on Intel because the user land dev_num is too
> large.
>
> Signed-off-by: Richard Palethorpe <rpalethorpe@suse.com>
> ---
>
> From looking at glibc, this test may also be broken on mips, but I am not
> sure
> if that matters. AFAICT on all other platforms glibc always casts to uint
> after performing a sanity check..
LGTM, LTP is using only 0 (and -1 for errno tests), so it shouldn't matter.
What about ustat02? Are you planning on sending something similar for that test?
Regards,
Jan
>
> testcases/kernel/syscalls/ustat/ustat01.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/testcases/kernel/syscalls/ustat/ustat01.c
> b/testcases/kernel/syscalls/ustat/ustat01.c
> index 3f1186c49..2e7dcc9d7 100644
> --- a/testcases/kernel/syscalls/ustat/ustat01.c
> +++ b/testcases/kernel/syscalls/ustat/ustat01.c
> @@ -20,7 +20,7 @@ void run(void)
> {
> struct ustat ubuf;
>
> - TEST(tst_syscall(__NR_ustat, dev_num, &ubuf));
> + TEST(tst_syscall(__NR_ustat, (unsigned int)dev_num, &ubuf));
>
> if (TST_RET == -1)
> tst_res(TFAIL | TTERRNO, "ustat(2) failed");
> --
> 2.20.1
>
>
> --
> Mailing list info: https://lists.linux.it/listinfo/ltp
>
More information about the ltp
mailing list