From: Christian Ehrhardt <christian.ehrhardt@canonical.com>
To: luca.boccassi@gmail.com
Cc: stable@dpdk.org, Luca Boccassi <bluca@debian.org>
Subject: Re: [PATCH 19.11 20.11 v2] pmdinfogen: fix compilation with Clang 3.4.2 on CentOS 7
Date: Fri, 1 Apr 2022 10:15:59 +0200 [thread overview]
Message-ID: <CAATJJ0KJh-sOtE3P6HdiVXWsKWANdfuf2vVZi==vRve4gAYdpQ@mail.gmail.com> (raw)
In-Reply-To: <20220330141213.349257-1-luca.boccassi@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2717 bytes --]
On Wed, Mar 30, 2022 at 4:12 PM <luca.boccassi@gmail.com> wrote:
> From: Luca Boccassi <bluca@debian.org>
>
> $ meson --werror --buildtype=debugoptimized build && ninja-build -C build
> [..]
> [5/2516] Compiling C object
> buildtools/pmdinfogen/pmdinfogen.p/pmdinfogen.c.o
> FAILED: buildtools/pmdinfogen/pmdinfogen.p/pmdinfogen.c.o
> clang -Ibuildtools/pmdinfogen/pmdinfogen.p -Ibuildtools/pmdinfogen
> -I../../root/dpdk/buildtools/pmdinfogen -I. -I../../root/dpdk -Iconfig
> -I../../root/dpdk/config -Ilib/librte_eal/include
> -I../../root/dpdk/lib/librte_eal/include -Ilib/librte_eal/linux/include
> -I../../root/dpdk/lib/librte_eal/linux/include -Ilib/librte_eal/x86/include
> -I../../root/dpdk/lib/librte_eal/x86/include -Ilib/librte_pci
> -I../../root/dpdk/lib/librte_pci -Xclang -fcolor-diagnostics -pipe
> -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -Werror -O2 -g -MD -MQ
> buildtools/pmdinfogen/pmdinfogen.p/pmdinfogen.c.o -MF
> buildtools/pmdinfogen/pmdinfogen.p/pmdinfogen.c.o.d -o
> buildtools/pmdinfogen/pmdinfogen.p/pmdinfogen.c.o -c
> ../../root/dpdk/buildtools/pmdinfogen/pmdinfogen.c
> ../../root/dpdk/buildtools/pmdinfogen/pmdinfogen.c:431:27: error: missing
> field 'hdr' initializer [-Werror,-Wmissing-field-initializers]
> struct elf_info info = {0};
> ^
> 1 error generated.
> [..]
>
> Use memset instead.
>
> Bugzilla ID: 984
>
> Fixes: 0decf84217f1 ("buildtools: zero elf info variable in pmdinfogen")
>
Works fine for me across distributions/architectures, applied replacing the
v1
> Signed-off-by: Luca Boccassi <bluca@debian.org>
> Reviewed-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
> ---
> structured init broke old gcc 4, switch to memset
>
> buildtools/pmdinfogen/pmdinfogen.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/buildtools/pmdinfogen/pmdinfogen.c
> b/buildtools/pmdinfogen/pmdinfogen.c
> index a68d1ea999..f7133267be 100644
> --- a/buildtools/pmdinfogen/pmdinfogen.c
> +++ b/buildtools/pmdinfogen/pmdinfogen.c
> @@ -428,7 +428,7 @@ static void output_pmd_info_string(struct elf_info
> *info, char *outfile)
>
> int main(int argc, char **argv)
> {
> - struct elf_info info = {0};
> + struct elf_info info;
> int rc = 1;
>
> if (argc < 3) {
> @@ -437,6 +437,7 @@ int main(int argc, char **argv)
> basename(argv[0]));
> exit(127);
> }
> + memset(&info, 0, sizeof(struct elf_info));
> use_stdin = !strcmp(argv[1], "-");
> use_stdout = !strcmp(argv[2], "-");
> parse_elf(&info, argv[1]);
> --
> 2.34.1
>
>
--
Christian Ehrhardt
Staff Engineer, Ubuntu Server
Canonical Ltd
[-- Attachment #2: Type: text/html, Size: 3739 bytes --]
prev parent reply other threads:[~2022-04-01 8:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-30 12:12 [PATCH 19.11 20.11] " luca.boccassi
2022-03-30 12:51 ` Christian Ehrhardt
2022-03-30 14:12 ` [PATCH 19.11 20.11 v2] " luca.boccassi
2022-04-01 8:15 ` Christian Ehrhardt [this message]
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='CAATJJ0KJh-sOtE3P6HdiVXWsKWANdfuf2vVZi==vRve4gAYdpQ@mail.gmail.com' \
--to=christian.ehrhardt@canonical.com \
--cc=bluca@debian.org \
--cc=luca.boccassi@gmail.com \
--cc=stable@dpdk.org \
/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 NNTP newsgroup(s).