[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CANn89iK+Gv2AbNH5DGxTUX_LAXZ8dzyrp0ivCKq6rYaJB1dYsQ@mail.gmail.com>
Date: Wed, 5 Apr 2023 09:05:38 +0200
From: Eric Dumazet <edumazet@...gle.com>
To: Kuniyuki Iwashima <kuniyu@...zon.com>
Cc: "David S. Miller" <davem@...emloft.net>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>,
Coco Li <lixiaoyan@...gle.com>,
Kuniyuki Iwashima <kuni1840@...il.com>, netdev@...r.kernel.org
Subject: Re: [PATCH v1 net-next] selftest/net: Fix uninit val warning in tcp_mmap.c.
On Wed, Apr 5, 2023 at 4:33 AM Kuniyuki Iwashima <kuniyu@...zon.com> wrote:
>
> Commit 5c5945dc695c ("selftests/net: Add SHA256 computation over data
> sent in tcp_mmap") forgot to initialise a local var.
>
> $ make -s -C tools/testing/selftests/net
> tcp_mmap.c: In function ‘child_thread’:
> tcp_mmap.c:211:61: warning: ‘lu’ may be used uninitialized in this function [-Wmaybe-uninitialized]
> 211 | zc.length = min(chunk_size, FILE_SZ - lu);
> | ^
>
> Fixes: 5c5945dc695c ("selftests/net: Add SHA256 computation over data sent in tcp_mmap")
> Signed-off-by: Kuniyuki Iwashima <kuniyu@...zon.com>
> ---
> Note that the cited commit is not merged in net.git.
> ---
> tools/testing/selftests/net/tcp_mmap.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/testing/selftests/net/tcp_mmap.c b/tools/testing/selftests/net/tcp_mmap.c
> index 607cc9ad8d1b..1056e37f4d98 100644
> --- a/tools/testing/selftests/net/tcp_mmap.c
> +++ b/tools/testing/selftests/net/tcp_mmap.c
> @@ -168,7 +168,7 @@ void *child_thread(void *arg)
> double throughput;
> struct rusage ru;
> size_t buffer_sz;
> - int lu, fd;
> + int lu = 0, fd;
>
> fd = (int)(unsigned long)arg;
>
> --
> 2.30.2
>
This is not the right fix. I sent it yesterday, not sure if you have seen it ?
Powered by blists - more mailing lists