public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
To: Stafford Horne <shorne@gmail.com>,
	GLIBC patches <libc-alpha@sourceware.org>
Cc: Alistair Francis <alistair.francis@wdc.com>
Subject: Re: [PATCH] time: Skip overflow itimer tests on 32-bit systems
Date: Wed, 9 Jun 2021 10:50:23 -0300	[thread overview]
Message-ID: <8ad55354-5d41-eaa4-6d6c-e650ea30d7cc@linaro.org> (raw)
In-Reply-To: <20210607131851.4015661-1-shorne@gmail.com>



On 07/06/2021 10:18, Stafford Horne wrote:
> On the port of OpenRISC I am working on and it appears the rv32 port
> we have sets __TIMESIZE == 64 && __WORDSIZE == 32.  This causes the
> size of time_t to be 8 bytes, but the tv_sec in the kernel is still 32-bit
> causing truncation.
> 
> The truncations are unavoidable on these systems so skip the
> testing/failures by guarding with __KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64.

Sigh, I was hoping that we won't need to handle this situation (glibc 
support only 64-bit time_t, but kernel still providing some 32-bit 
syscall).

> ---
> 
> I am open to other suggestions, this seemed the most correct to me.
> 
> Cc: Adhemerval Zanella <adhemerval.zanella@linaro.org>
> Cc: Alistair Francis <alistair.francis@wdc.com>
> 
>  time/tst-itimer.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/time/tst-itimer.c b/time/tst-itimer.c
> index 929c2b74c7..0c99d46d7e 100644
> --- a/time/tst-itimer.c
> +++ b/time/tst-itimer.c
> @@ -89,6 +89,7 @@ do_test (void)
>        TEST_COMPARE (it.it_interval.tv_sec, it_old.it_interval.tv_sec);
>        TEST_COMPARE (it.it_interval.tv_usec, it_old.it_interval.tv_usec);
>  
> +#if __KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64
>        if (sizeof (time_t) == 4)
>  	continue;
>  
> @@ -146,6 +147,7 @@ do_test (void)
>  	  TEST_COMPARE (setitimer (timers[i], &it, NULL), -1);
>  	  TEST_COMPARE (errno, EOVERFLOW);
>  	}
> +#endif
>    }
>  
>    {
> 

Instead of disabling, I think it would be better to use
__KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64 instead of __time_t sizeof
(so we can still tests the EOVERFLOW):

diff --git a/time/tst-itimer.c b/time/tst-itimer.c
index 929c2b74c7..bd7d7afe83 100644
--- a/time/tst-itimer.c
+++ b/time/tst-itimer.c
@@ -100,7 +100,7 @@ do_test (void)

       /* Linux does not provide 64 bit time_t support for getitimer and
         setitimer on architectures with 32 bit time_t support.  */
-      if (sizeof (__time_t) == 8)
+      if (__KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64)
        { 
          TEST_COMPARE (setitimer (timers[i], &it, NULL), 0);
          TEST_COMPARE (setitimer (timers[i], &(struct itimerval) { 0 },
@@ -131,7 +131,7 @@ do_test (void)
       it.it_interval.tv_usec = 20;
       it.it_value.tv_sec = 30;
       it.it_value.tv_usec = 40;
-      if (sizeof (__time_t) == 8)
+      if (__KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64)
        { 
          TEST_COMPARE (setitimer (timers[i], &it, NULL), 0);

  reply	other threads:[~2021-06-09 13:50 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-07 13:18 Stafford Horne
2021-06-09 13:50 ` Adhemerval Zanella [this message]
2021-06-09 21:38   ` Stafford Horne
2021-06-12  9:19     ` Stafford Horne
2021-07-06 19:58       ` Adhemerval Zanella
2021-07-07 21:11         ` Stafford Horne
2022-10-28 19:47         ` Aurelien Jarno
2022-10-31 14:02           ` Adhemerval Zanella Netto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8ad55354-5d41-eaa4-6d6c-e650ea30d7cc@linaro.org \
    --to=adhemerval.zanella@linaro.org \
    --cc=alistair.francis@wdc.com \
    --cc=libc-alpha@sourceware.org \
    --cc=shorne@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).