mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] scripts/kwboot: Fix normalizing timeval
@ 2021-11-30 16:03 Uwe Kleine-König
  2021-12-07  9:07 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Uwe Kleine-König @ 2021-11-30 16:03 UTC (permalink / raw)
  To: barebox

If tv.tv_usec is 1000000 the structure needs normalizing, too. So the
right check would be:

	if (tv.tv_usec >= 1000000) {
		...

But as normalizing doesn't destroy anything even for smaller values,
just do it unconditionally to simplify a bit.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 scripts/kwboot.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/scripts/kwboot.c b/scripts/kwboot.c
index 60e8a69d187d..1cbb456935f2 100644
--- a/scripts/kwboot.c
+++ b/scripts/kwboot.c
@@ -147,12 +147,11 @@ kwboot_tty_recv(int fd, void *buf, size_t len, int timeo)
 	FD_ZERO(&rfds);
 	FD_SET(fd, &rfds);
 
-	tv.tv_sec = 0;
 	tv.tv_usec = timeo * 1000;
-	if (tv.tv_usec > 1000000) {
-		tv.tv_sec += tv.tv_usec / 1000000;
-		tv.tv_usec %= 1000000;
-	}
+
+	/* normalize timeval */
+	tv.tv_sec = tv.tv_usec / 1000000;
+	tv.tv_usec %= 1000000;
 
 	do {
 		nfds = select(fd + 1, &rfds, NULL, NULL, &tv);

base-commit: f2dd8896846757829fb3033f41b89be3fc037d78
-- 
2.30.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] scripts/kwboot: Fix normalizing timeval
  2021-11-30 16:03 [PATCH] scripts/kwboot: Fix normalizing timeval Uwe Kleine-König
@ 2021-12-07  9:07 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2021-12-07  9:07 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: barebox

On Tue, Nov 30, 2021 at 05:03:08PM +0100, Uwe Kleine-König wrote:
> If tv.tv_usec is 1000000 the structure needs normalizing, too. So the
> right check would be:
> 
> 	if (tv.tv_usec >= 1000000) {
> 		...
> 
> But as normalizing doesn't destroy anything even for smaller values,
> just do it unconditionally to simplify a bit.
> 
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---
>  scripts/kwboot.c | 9 ++++-----
>  1 file changed, 4 insertions(+), 5 deletions(-)

Applied, thanks

Sascha

> 
> diff --git a/scripts/kwboot.c b/scripts/kwboot.c
> index 60e8a69d187d..1cbb456935f2 100644
> --- a/scripts/kwboot.c
> +++ b/scripts/kwboot.c
> @@ -147,12 +147,11 @@ kwboot_tty_recv(int fd, void *buf, size_t len, int timeo)
>  	FD_ZERO(&rfds);
>  	FD_SET(fd, &rfds);
>  
> -	tv.tv_sec = 0;
>  	tv.tv_usec = timeo * 1000;
> -	if (tv.tv_usec > 1000000) {
> -		tv.tv_sec += tv.tv_usec / 1000000;
> -		tv.tv_usec %= 1000000;
> -	}
> +
> +	/* normalize timeval */
> +	tv.tv_sec = tv.tv_usec / 1000000;
> +	tv.tv_usec %= 1000000;
>  
>  	do {
>  		nfds = select(fd + 1, &rfds, NULL, NULL, &tv);
> 
> base-commit: f2dd8896846757829fb3033f41b89be3fc037d78
> -- 
> 2.30.2
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-12-07  9:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-30 16:03 [PATCH] scripts/kwboot: Fix normalizing timeval Uwe Kleine-König
2021-12-07  9:07 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox