[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <cdc1fbbb-4299-4283-9bac-f1d7fb6962b6@linux.dev>
Date: Sun, 30 Mar 2025 11:53:33 +0200
From: Zhu Yanjun <yanjun.zhu@...ux.dev>
To: "Gustavo A. R. Silva" <gustavoars@...nel.org>,
Dennis Dalessandro <dennis.dalessandro@...nelisnetworks.com>,
Jason Gunthorpe <jgg@...pe.ca>, Leon Romanovsky <leon@...nel.org>
Cc: linux-rdma@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-hardening@...r.kernel.org
Subject: Re: [PATCH][next] IB/hfi1: Avoid -Wflex-array-member-not-at-end
warning
在 2025/3/27 20:02, Gustavo A. R. Silva 写道:
> -Wflex-array-member-not-at-end was introduced in GCC-14, and we are
> getting ready to enable it, globally.
>
> Move the conflicting declaration to the end of the structure. Notice
> that `struct opa_mad_notice_attr` is a flexible structure --a structure
> that contains a flexible-array member.
>
> Fix the following warning:
>
> drivers/infiniband/hw/hfi1/mad.c:23:36: warning: structure containing a flexible array member is not at the end of another structure [-Wflex-array-member-not-at-end]
>
> Signed-off-by: Gustavo A. R. Silva <gustavoars@...nel.org>
Reviewed-by: Zhu Yanjun <yanjun.zhu@...ux.dev>
Thanks,
Zhu Yanjun
> ---
> drivers/infiniband/hw/hfi1/mad.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/infiniband/hw/hfi1/mad.c b/drivers/infiniband/hw/hfi1/mad.c
> index b39f63ce6dfc..3f11a90819d1 100644
> --- a/drivers/infiniband/hw/hfi1/mad.c
> +++ b/drivers/infiniband/hw/hfi1/mad.c
> @@ -20,12 +20,14 @@
>
> struct trap_node {
> struct list_head list;
> - struct opa_mad_notice_attr data;
> __be64 tid;
> int len;
> u32 retry;
> u8 in_use;
> u8 repress;
> +
> + /* Must be last --ends in a flexible-array member. */
> + struct opa_mad_notice_attr data;
> };
>
> static int smp_length_check(u32 data_size, u32 request_len)
Powered by blists - more mailing lists