From: "José Pekkarinen" <jose.pekkarinen@foxhound.fi>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: Xinhui.Pan@amd.com, linux-kernel@vger.kernel.org,
amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
daniel@ffwll.ch, skhan@linuxfoundation.org,
alexander.deucher@amd.com, evan.quan@amd.com, airlied@gmail.com,
christian.koenig@amd.com, linux-kernel-mentees@lists.linux.dev
Subject: Re: [PATCH] drm/amd/pm: replace 1-element arrays with flexible-array members
Date: Thu, 09 Nov 2023 10:43:50 +0200 [thread overview]
Message-ID: <1b20f2e4ddc0b0e94aa9a1f9c76ff75c@foxhound.fi> (raw)
In-Reply-To: <2023110835-magnolia-prune-02d0@gregkh>
On 2023-11-08 09:29, Greg KH wrote:
> On Wed, Nov 08, 2023 at 08:54:35AM +0200, José Pekkarinen wrote:
>> The following case seems to be safe to be replaced with a flexible
>> array
>> to clean up the added coccinelle warning. This patch will just do it.
>>
>> drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h:76:38-63:
>> WARNING use flexible-array member instead
>> (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
>>
>> Signed-off-by: José Pekkarinen <jose.pekkarinen@foxhound.fi>
>> ---
>> drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> b/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> index c7b61222d258..1ce4087005f0 100644
>> --- a/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> +++ b/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> @@ -73,7 +73,7 @@ struct smu8_register_index_data_pair {
>>
>> struct smu8_ih_meta_data {
>> uint32_t command;
>> - struct smu8_register_index_data_pair register_index_value_pair[1];
>> + struct smu8_register_index_data_pair register_index_value_pair[];
>
> Did you just change this structure size without any need to change any
> code as well? How was this tested?
I didn't find any use of that struct member, if I missed
something here, please let me know and I'll happily address any
needed further work.
José.
WARNING: multiple messages have this Message-ID (diff)
From: "José Pekkarinen" <jose.pekkarinen@foxhound.fi>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: evan.quan@amd.com, alexander.deucher@amd.com,
christian.koenig@amd.com, Xinhui.Pan@amd.com,
skhan@linuxfoundation.org, airlied@gmail.com, daniel@ffwll.ch,
amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
linux-kernel@vger.kernel.org,
linux-kernel-mentees@lists.linux.dev
Subject: Re: [PATCH] drm/amd/pm: replace 1-element arrays with flexible-array members
Date: Thu, 09 Nov 2023 10:43:50 +0200 [thread overview]
Message-ID: <1b20f2e4ddc0b0e94aa9a1f9c76ff75c@foxhound.fi> (raw)
In-Reply-To: <2023110835-magnolia-prune-02d0@gregkh>
On 2023-11-08 09:29, Greg KH wrote:
> On Wed, Nov 08, 2023 at 08:54:35AM +0200, José Pekkarinen wrote:
>> The following case seems to be safe to be replaced with a flexible
>> array
>> to clean up the added coccinelle warning. This patch will just do it.
>>
>> drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h:76:38-63:
>> WARNING use flexible-array member instead
>> (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
>>
>> Signed-off-by: José Pekkarinen <jose.pekkarinen@foxhound.fi>
>> ---
>> drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> b/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> index c7b61222d258..1ce4087005f0 100644
>> --- a/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> +++ b/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> @@ -73,7 +73,7 @@ struct smu8_register_index_data_pair {
>>
>> struct smu8_ih_meta_data {
>> uint32_t command;
>> - struct smu8_register_index_data_pair register_index_value_pair[1];
>> + struct smu8_register_index_data_pair register_index_value_pair[];
>
> Did you just change this structure size without any need to change any
> code as well? How was this tested?
I didn't find any use of that struct member, if I missed
something here, please let me know and I'll happily address any
needed further work.
José.
WARNING: multiple messages have this Message-ID (diff)
From: "José Pekkarinen" <jose.pekkarinen@foxhound.fi>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: Xinhui.Pan@amd.com, linux-kernel@vger.kernel.org,
amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
skhan@linuxfoundation.org, alexander.deucher@amd.com,
evan.quan@amd.com, christian.koenig@amd.com,
linux-kernel-mentees@lists.linux.dev
Subject: Re: [PATCH] drm/amd/pm: replace 1-element arrays with flexible-array members
Date: Thu, 09 Nov 2023 10:43:50 +0200 [thread overview]
Message-ID: <1b20f2e4ddc0b0e94aa9a1f9c76ff75c@foxhound.fi> (raw)
In-Reply-To: <2023110835-magnolia-prune-02d0@gregkh>
On 2023-11-08 09:29, Greg KH wrote:
> On Wed, Nov 08, 2023 at 08:54:35AM +0200, José Pekkarinen wrote:
>> The following case seems to be safe to be replaced with a flexible
>> array
>> to clean up the added coccinelle warning. This patch will just do it.
>>
>> drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h:76:38-63:
>> WARNING use flexible-array member instead
>> (https://www.kernel.org/doc/html/latest/process/deprecated.html#zero-length-and-one-element-arrays)
>>
>> Signed-off-by: José Pekkarinen <jose.pekkarinen@foxhound.fi>
>> ---
>> drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> b/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> index c7b61222d258..1ce4087005f0 100644
>> --- a/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> +++ b/drivers/gpu/drm/amd/pm/powerplay/smumgr/smu8_smumgr.h
>> @@ -73,7 +73,7 @@ struct smu8_register_index_data_pair {
>>
>> struct smu8_ih_meta_data {
>> uint32_t command;
>> - struct smu8_register_index_data_pair register_index_value_pair[1];
>> + struct smu8_register_index_data_pair register_index_value_pair[];
>
> Did you just change this structure size without any need to change any
> code as well? How was this tested?
I didn't find any use of that struct member, if I missed
something here, please let me know and I'll happily address any
needed further work.
José.
next prev parent reply other threads:[~2023-11-09 14:43 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-08 6:54 [PATCH] drm/amd/pm: replace 1-element arrays with flexible-array members José Pekkarinen
2023-11-08 6:54 ` José Pekkarinen
2023-11-08 6:54 ` José Pekkarinen
2023-11-08 7:29 ` Greg KH
2023-11-08 7:29 ` Greg KH
2023-11-08 7:29 ` Greg KH
2023-11-09 8:43 ` José Pekkarinen [this message]
2023-11-09 8:43 ` José Pekkarinen
2023-11-09 8:43 ` José Pekkarinen
2023-11-09 9:06 ` Greg KH
2023-11-09 9:06 ` Greg KH
2023-11-09 9:06 ` Greg KH
2023-11-09 11:54 ` José Pekkarinen
2023-11-09 11:54 ` José Pekkarinen
2023-11-09 11:54 ` José Pekkarinen
2023-11-09 15:40 ` Alex Deucher
2023-11-09 15:40 ` Alex Deucher
-- strict thread matches above, loose matches on Subject: below --
2023-11-08 6:55 José Pekkarinen
2023-11-08 6:55 ` José Pekkarinen
2023-11-08 6:55 ` José Pekkarinen
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=1b20f2e4ddc0b0e94aa9a1f9c76ff75c@foxhound.fi \
--to=jose.pekkarinen@foxhound.fi \
--cc=Xinhui.Pan@amd.com \
--cc=airlied@gmail.com \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=christian.koenig@amd.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=evan.quan@amd.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel-mentees@lists.linux.dev \
--cc=linux-kernel@vger.kernel.org \
--cc=skhan@linuxfoundation.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.