linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] cyclictest: Fix a maybe-uninitialized warn on duration option
@ 2016-07-21  0:48 Daniel Bristot de Oliveira
  2016-07-21 13:35 ` John Kacur
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Bristot de Oliveira @ 2016-07-21  0:48 UTC (permalink / raw)
  To: linux-rt-users; +Cc: John Kacur, Clark Williams

I am having the following warning while compiling cyclictest on
Federa 24 (GCC 6.1.1 20160621):

--------------------------%<--------------------------------------------
[root@f24desk rt-tests]# make
cc -D VERSION=1.1 -c src/cyclictest/cyclictest.c -Wall -Wno-nonnull -O2 -DNUMA -DHAVE_PARSE_CPUSTRING_ALL -D_GNU_SOURCE -Isrc/include -o bld/cyclictest.o
src/cyclictest/cyclictest.c: In function ‘timerthread’:
src/cyclictest/cyclictest.c:427:30: warning: ‘*((void *)&stop+8)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  diff += ((int) t1.tv_nsec - (int) t2.tv_nsec) / 1000;
                              ^~~~~~~~~~~~~~~~
src/cyclictest/cyclictest.c:980:39: note: ‘*((void *)&stop+8)’ was declared here
  struct timespec now, next, interval, stop;
                                       ^~~~
src/cyclictest/cyclictest.c:426:54: warning: ‘stop.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  diff = USEC_PER_SEC * (long long)((int) t1.tv_sec - (int) t2.tv_sec);
                                                      ^~~~~~~~~~~~~~~
src/cyclictest/cyclictest.c:980:39: note: ‘stop.tv_sec’ was declared here
  struct timespec now, next, interval, stop;
                                       ^~~~
-------------------------->%--------------------------------------------

This is a false positive, but rather than workaround it using GCC pragma
option, I think it is better to use stop variable itself to define
whether it should be used of not.

Cc: John Kacur <jkacur@redhat.com>
Cc: Clark Williams <williams@redhat.com>
Signed-off-by: Daniel Bristot de Oliveira <bristot@redhat.com>
---
 src/cyclictest/cyclictest.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
index 5e23fc5..ad11b1b 100644
--- a/src/cyclictest/cyclictest.c
+++ b/src/cyclictest/cyclictest.c
@@ -977,7 +977,8 @@ static void *timerthread(void *param)
 	struct sigevent sigev;
 	sigset_t sigset;
 	timer_t timer;
-	struct timespec now, next, interval, stop;
+	struct timespec now, next, interval;
+	struct timespec *stop = NULL;
 	struct itimerval itimer;
 	struct itimerspec tspec;
 	struct thread_stat *stat = par->stats;
@@ -1066,9 +1067,11 @@ static void *timerthread(void *param)
 	tsnorm(&next);
 
 	if (duration) {
-		memset(&stop, 0, sizeof(stop)); /* grrr */
-		stop = now;
-		stop.tv_sec += duration;
+		stop = malloc(sizeof(struct timespec));
+		if (!stop)
+			fatal("error allocating space for duration option\n");
+		stop->tv_sec = now.tv_sec + duration;
+		stop->tv_nsec = now.tv_nsec;
 	}
 	if (par->mode == MODE_CYCLIC) {
 		if (par->timermode == TIMER_ABSTIME)
@@ -1185,7 +1188,7 @@ static void *timerthread(void *param)
 		}
 
 
-		if (duration && (calcdiff(now, stop) >= 0))
+		if (stop && (calcdiff(now, *stop) >= 0))
 			shutdown++;
 
 		if (!stopped && tracelimit && (diff > tracelimit)) {
-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] cyclictest: Fix a maybe-uninitialized warn on duration option
  2016-07-21  0:48 [PATCH] cyclictest: Fix a maybe-uninitialized warn on duration option Daniel Bristot de Oliveira
@ 2016-07-21 13:35 ` John Kacur
  0 siblings, 0 replies; 2+ messages in thread
From: John Kacur @ 2016-07-21 13:35 UTC (permalink / raw)
  To: Daniel Bristot de Oliveira; +Cc: linux-rt-users, Clark Williams

[-- Attachment #1: Type: text/plain, Size: 3430 bytes --]



On Wed, 20 Jul 2016, Daniel Bristot de Oliveira wrote:

> I am having the following warning while compiling cyclictest on
> Federa 24 (GCC 6.1.1 20160621):
> 
> --------------------------%<--------------------------------------------
> [root@f24desk rt-tests]# make
> cc -D VERSION=1.1 -c src/cyclictest/cyclictest.c -Wall -Wno-nonnull -O2 -DNUMA -DHAVE_PARSE_CPUSTRING_ALL -D_GNU_SOURCE -Isrc/include -o bld/cyclictest.o
> src/cyclictest/cyclictest.c: In function ‘timerthread’:
> src/cyclictest/cyclictest.c:427:30: warning: ‘*((void *)&stop+8)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
>   diff += ((int) t1.tv_nsec - (int) t2.tv_nsec) / 1000;
>                               ^~~~~~~~~~~~~~~~
> src/cyclictest/cyclictest.c:980:39: note: ‘*((void *)&stop+8)’ was declared here
>   struct timespec now, next, interval, stop;
>                                        ^~~~
> src/cyclictest/cyclictest.c:426:54: warning: ‘stop.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized]
>   diff = USEC_PER_SEC * (long long)((int) t1.tv_sec - (int) t2.tv_sec);
>                                                       ^~~~~~~~~~~~~~~
> src/cyclictest/cyclictest.c:980:39: note: ‘stop.tv_sec’ was declared here
>   struct timespec now, next, interval, stop;
>                                        ^~~~
> -------------------------->%--------------------------------------------
> 
> This is a false positive, but rather than workaround it using GCC pragma
> option, I think it is better to use stop variable itself to define
> whether it should be used of not.
> 
> Cc: John Kacur <jkacur@redhat.com>
> Cc: Clark Williams <williams@redhat.com>
> Signed-off-by: Daniel Bristot de Oliveira <bristot@redhat.com>
> ---
>  src/cyclictest/cyclictest.c | 13 ++++++++-----
>  1 file changed, 8 insertions(+), 5 deletions(-)
> 
> diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
> index 5e23fc5..ad11b1b 100644
> --- a/src/cyclictest/cyclictest.c
> +++ b/src/cyclictest/cyclictest.c
> @@ -977,7 +977,8 @@ static void *timerthread(void *param)
>  	struct sigevent sigev;
>  	sigset_t sigset;
>  	timer_t timer;
> -	struct timespec now, next, interval, stop;
> +	struct timespec now, next, interval;
> +	struct timespec *stop = NULL;
>  	struct itimerval itimer;
>  	struct itimerspec tspec;
>  	struct thread_stat *stat = par->stats;
> @@ -1066,9 +1067,11 @@ static void *timerthread(void *param)
>  	tsnorm(&next);
>  
>  	if (duration) {
> -		memset(&stop, 0, sizeof(stop)); /* grrr */
> -		stop = now;
> -		stop.tv_sec += duration;
> +		stop = malloc(sizeof(struct timespec));
> +		if (!stop)
> +			fatal("error allocating space for duration option\n");
> +		stop->tv_sec = now.tv_sec + duration;
> +		stop->tv_nsec = now.tv_nsec;
>  	}
>  	if (par->mode == MODE_CYCLIC) {
>  		if (par->timermode == TIMER_ABSTIME)
> @@ -1185,7 +1188,7 @@ static void *timerthread(void *param)
>  		}
>  
>  
> -		if (duration && (calcdiff(now, stop) >= 0))
> +		if (stop && (calcdiff(now, *stop) >= 0))
>  			shutdown++;
>  
>  		if (!stopped && tracelimit && (diff > tracelimit)) {
> -- 
> 2.7.4
> 

I'm not sure about this one. Do we really need to change our code for a 
false positive, that is really a compiler regression? And then we're 
adding a malloc to a rt program for that? I'd rather ignore the warning if 
we can't do this in a simpler manner.

Thanks

John

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

end of thread, other threads:[~2016-07-21 13:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-21  0:48 [PATCH] cyclictest: Fix a maybe-uninitialized warn on duration option Daniel Bristot de Oliveira
2016-07-21 13:35 ` John Kacur

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 NNTP newsgroup(s).