* [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow
@ 2023-10-04 7:55 Thomas Huth
2023-10-04 8:00 ` Philippe Mathieu-Daudé
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Thomas Huth @ 2023-10-04 7:55 UTC (permalink / raw)
To: qemu-devel, Michael S. Tsirkin; +Cc: Markus Armbruster, qemu-trivial
"len" is used as parameter of the function virtio_write_config()
and as a local variable, so this causes a compiler warning
when compiling with "-Wshadow" and can be confusing for the reader.
Rename the local variable to "caplen" to avoid this problem.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
hw/virtio/virtio-pci.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
index edbc0daa18..d0ef1edd66 100644
--- a/hw/virtio/virtio-pci.c
+++ b/hw/virtio/virtio-pci.c
@@ -780,15 +780,15 @@ static void virtio_write_config(PCIDevice *pci_dev, uint32_t address,
pci_cfg_data),
sizeof cfg->pci_cfg_data)) {
uint32_t off;
- uint32_t len;
+ uint32_t caplen;
cfg = (void *)(proxy->pci_dev.config + proxy->config_cap);
off = le32_to_cpu(cfg->cap.offset);
- len = le32_to_cpu(cfg->cap.length);
+ caplen = le32_to_cpu(cfg->cap.length);
- if (len == 1 || len == 2 || len == 4) {
- assert(len <= sizeof cfg->pci_cfg_data);
- virtio_address_space_write(proxy, off, cfg->pci_cfg_data, len);
+ if (caplen == 1 || caplen == 2 || caplen == 4) {
+ assert(caplen <= sizeof cfg->pci_cfg_data);
+ virtio_address_space_write(proxy, off, cfg->pci_cfg_data, caplen);
}
}
}
--
2.41.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow
2023-10-04 7:55 [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow Thomas Huth
@ 2023-10-04 8:00 ` Philippe Mathieu-Daudé
2023-10-04 8:25 ` Michael S. Tsirkin
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-10-04 8:00 UTC (permalink / raw)
To: Thomas Huth, qemu-devel, Michael S. Tsirkin
Cc: Markus Armbruster, qemu-trivial
On 4/10/23 09:55, Thomas Huth wrote:
> "len" is used as parameter of the function virtio_write_config()
> and as a local variable, so this causes a compiler warning
> when compiling with "-Wshadow" and can be confusing for the reader.
> Rename the local variable to "caplen" to avoid this problem.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> hw/virtio/virtio-pci.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow
2023-10-04 7:55 [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow Thomas Huth
2023-10-04 8:00 ` Philippe Mathieu-Daudé
@ 2023-10-04 8:25 ` Michael S. Tsirkin
2023-10-04 9:49 ` Thomas Huth
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Michael S. Tsirkin @ 2023-10-04 8:25 UTC (permalink / raw)
To: Thomas Huth; +Cc: qemu-devel, Markus Armbruster, qemu-trivial
On Wed, Oct 04, 2023 at 09:55:36AM +0200, Thomas Huth wrote:
> "len" is used as parameter of the function virtio_write_config()
> and as a local variable, so this causes a compiler warning
> when compiling with "-Wshadow" and can be confusing for the reader.
> Rename the local variable to "caplen" to avoid this problem.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
ok sure
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
feel free to merge with rest of -Wshadow things.
> ---
> hw/virtio/virtio-pci.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
> index edbc0daa18..d0ef1edd66 100644
> --- a/hw/virtio/virtio-pci.c
> +++ b/hw/virtio/virtio-pci.c
> @@ -780,15 +780,15 @@ static void virtio_write_config(PCIDevice *pci_dev, uint32_t address,
> pci_cfg_data),
> sizeof cfg->pci_cfg_data)) {
> uint32_t off;
> - uint32_t len;
> + uint32_t caplen;
>
> cfg = (void *)(proxy->pci_dev.config + proxy->config_cap);
> off = le32_to_cpu(cfg->cap.offset);
> - len = le32_to_cpu(cfg->cap.length);
> + caplen = le32_to_cpu(cfg->cap.length);
>
> - if (len == 1 || len == 2 || len == 4) {
> - assert(len <= sizeof cfg->pci_cfg_data);
> - virtio_address_space_write(proxy, off, cfg->pci_cfg_data, len);
> + if (caplen == 1 || caplen == 2 || caplen == 4) {
> + assert(caplen <= sizeof cfg->pci_cfg_data);
> + virtio_address_space_write(proxy, off, cfg->pci_cfg_data, caplen);
> }
> }
> }
> --
> 2.41.0
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow
2023-10-04 7:55 [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow Thomas Huth
2023-10-04 8:00 ` Philippe Mathieu-Daudé
2023-10-04 8:25 ` Michael S. Tsirkin
@ 2023-10-04 9:49 ` Thomas Huth
2023-10-04 10:42 ` Markus Armbruster
2023-10-04 10:58 ` Markus Armbruster
4 siblings, 0 replies; 8+ messages in thread
From: Thomas Huth @ 2023-10-04 9:49 UTC (permalink / raw)
To: qemu-devel, Michael S. Tsirkin; +Cc: Markus Armbruster, qemu-trivial
On 04/10/2023 09.55, Thomas Huth wrote:
> "len" is used as parameter of the function virtio_write_config()
> and as a local variable, so this causes a compiler warning
> when compiling with "-Wshadow" and can be confusing for the reader.
> Rename the local variable to "caplen" to avoid this problem.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> hw/virtio/virtio-pci.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
> index edbc0daa18..d0ef1edd66 100644
> --- a/hw/virtio/virtio-pci.c
> +++ b/hw/virtio/virtio-pci.c
> @@ -780,15 +780,15 @@ static void virtio_write_config(PCIDevice *pci_dev, uint32_t address,
> pci_cfg_data),
> sizeof cfg->pci_cfg_data)) {
> uint32_t off;
> - uint32_t len;
> + uint32_t caplen;
>
> cfg = (void *)(proxy->pci_dev.config + proxy->config_cap);
> off = le32_to_cpu(cfg->cap.offset);
> - len = le32_to_cpu(cfg->cap.length);
> + caplen = le32_to_cpu(cfg->cap.length);
>
> - if (len == 1 || len == 2 || len == 4) {
> - assert(len <= sizeof cfg->pci_cfg_data);
> - virtio_address_space_write(proxy, off, cfg->pci_cfg_data, len);
> + if (caplen == 1 || caplen == 2 || caplen == 4) {
> + assert(caplen <= sizeof cfg->pci_cfg_data);
> + virtio_address_space_write(proxy, off, cfg->pci_cfg_data, caplen);
> }
> }
> }
Ooops, there is a second warning in this file, in the virtio_read_config()
... I somehow missed that in the crowded console output, sorry. I'll send a v2.
Thomas
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow
2023-10-04 7:55 [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow Thomas Huth
` (2 preceding siblings ...)
2023-10-04 9:49 ` Thomas Huth
@ 2023-10-04 10:42 ` Markus Armbruster
2023-10-04 10:58 ` Markus Armbruster
4 siblings, 0 replies; 8+ messages in thread
From: Markus Armbruster @ 2023-10-04 10:42 UTC (permalink / raw)
To: Thomas Huth; +Cc: qemu-devel, Michael S. Tsirkin, qemu-trivial
Thomas Huth <thuth@redhat.com> writes:
> "len" is used as parameter of the function virtio_write_config()
> and as a local variable, so this causes a compiler warning
> when compiling with "-Wshadow" and can be confusing for the reader.
> Rename the local variable to "caplen" to avoid this problem.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
Queued. Thanks!
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow
2023-10-04 7:55 [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow Thomas Huth
` (3 preceding siblings ...)
2023-10-04 10:42 ` Markus Armbruster
@ 2023-10-04 10:58 ` Markus Armbruster
2023-10-04 11:08 ` Thomas Huth
4 siblings, 1 reply; 8+ messages in thread
From: Markus Armbruster @ 2023-10-04 10:58 UTC (permalink / raw)
To: Thomas Huth; +Cc: qemu-devel, Michael S. Tsirkin, qemu-trivial
Thomas Huth <thuth@redhat.com> writes:
> "len" is used as parameter of the function virtio_write_config()
> and as a local variable, so this causes a compiler warning
> when compiling with "-Wshadow" and can be confusing for the reader.
> Rename the local variable to "caplen" to avoid this problem.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> hw/virtio/virtio-pci.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
> index edbc0daa18..d0ef1edd66 100644
> --- a/hw/virtio/virtio-pci.c
> +++ b/hw/virtio/virtio-pci.c
> @@ -780,15 +780,15 @@ static void virtio_write_config(PCIDevice *pci_dev, uint32_t address,
> pci_cfg_data),
> sizeof cfg->pci_cfg_data)) {
> uint32_t off;
> - uint32_t len;
> + uint32_t caplen;
>
> cfg = (void *)(proxy->pci_dev.config + proxy->config_cap);
> off = le32_to_cpu(cfg->cap.offset);
> - len = le32_to_cpu(cfg->cap.length);
> + caplen = le32_to_cpu(cfg->cap.length);
>
> - if (len == 1 || len == 2 || len == 4) {
> - assert(len <= sizeof cfg->pci_cfg_data);
> - virtio_address_space_write(proxy, off, cfg->pci_cfg_data, len);
> + if (caplen == 1 || caplen == 2 || caplen == 4) {
> + assert(caplen <= sizeof cfg->pci_cfg_data);
> + virtio_address_space_write(proxy, off, cfg->pci_cfg_data, caplen);
> }
> }
> }
I see the same warning in virtio_read_config(). Care to patch that,
too?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow
2023-10-04 10:58 ` Markus Armbruster
@ 2023-10-04 11:08 ` Thomas Huth
2023-10-04 11:33 ` Markus Armbruster
0 siblings, 1 reply; 8+ messages in thread
From: Thomas Huth @ 2023-10-04 11:08 UTC (permalink / raw)
To: Markus Armbruster; +Cc: qemu-devel, Michael S. Tsirkin, qemu-trivial
On 04/10/2023 12.58, Markus Armbruster wrote:
> Thomas Huth <thuth@redhat.com> writes:
>
>> "len" is used as parameter of the function virtio_write_config()
>> and as a local variable, so this causes a compiler warning
>> when compiling with "-Wshadow" and can be confusing for the reader.
>> Rename the local variable to "caplen" to avoid this problem.
>>
>> Signed-off-by: Thomas Huth <thuth@redhat.com>
>> ---
>> hw/virtio/virtio-pci.c | 10 +++++-----
>> 1 file changed, 5 insertions(+), 5 deletions(-)
>>
>> diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
>> index edbc0daa18..d0ef1edd66 100644
>> --- a/hw/virtio/virtio-pci.c
>> +++ b/hw/virtio/virtio-pci.c
>> @@ -780,15 +780,15 @@ static void virtio_write_config(PCIDevice *pci_dev, uint32_t address,
>> pci_cfg_data),
>> sizeof cfg->pci_cfg_data)) {
>> uint32_t off;
>> - uint32_t len;
>> + uint32_t caplen;
>>
>> cfg = (void *)(proxy->pci_dev.config + proxy->config_cap);
>> off = le32_to_cpu(cfg->cap.offset);
>> - len = le32_to_cpu(cfg->cap.length);
>> + caplen = le32_to_cpu(cfg->cap.length);
>>
>> - if (len == 1 || len == 2 || len == 4) {
>> - assert(len <= sizeof cfg->pci_cfg_data);
>> - virtio_address_space_write(proxy, off, cfg->pci_cfg_data, len);
>> + if (caplen == 1 || caplen == 2 || caplen == 4) {
>> + assert(caplen <= sizeof cfg->pci_cfg_data);
>> + virtio_address_space_write(proxy, off, cfg->pci_cfg_data, caplen);
>> }
>> }
>> }
>
> I see the same warning in virtio_read_config(). Care to patch that,
> too?
Patch is already on the list:
https://lore.kernel.org/qemu-devel/20231004095302.99037-1-thuth@redhat.com/
Thomas
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow
2023-10-04 11:08 ` Thomas Huth
@ 2023-10-04 11:33 ` Markus Armbruster
0 siblings, 0 replies; 8+ messages in thread
From: Markus Armbruster @ 2023-10-04 11:33 UTC (permalink / raw)
To: Thomas Huth; +Cc: qemu-devel, Michael S. Tsirkin, qemu-trivial
Thomas Huth <thuth@redhat.com> writes:
> On 04/10/2023 12.58, Markus Armbruster wrote:
>> Thomas Huth <thuth@redhat.com> writes:
>>
>>> "len" is used as parameter of the function virtio_write_config()
>>> and as a local variable, so this causes a compiler warning
>>> when compiling with "-Wshadow" and can be confusing for the reader.
>>> Rename the local variable to "caplen" to avoid this problem.
>>>
>>> Signed-off-by: Thomas Huth <thuth@redhat.com>
[...]
>> I see the same warning in virtio_read_config(). Care to patch that,
>> too?
>
> Patch is already on the list:
> https://lore.kernel.org/qemu-devel/20231004095302.99037-1-thuth@redhat.com/
Awesome, thanks!
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-10-04 11:34 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-04 7:55 [PATCH] hw/virtio/virtio-pci: Avoid compiler warning with -Wshadow Thomas Huth
2023-10-04 8:00 ` Philippe Mathieu-Daudé
2023-10-04 8:25 ` Michael S. Tsirkin
2023-10-04 9:49 ` Thomas Huth
2023-10-04 10:42 ` Markus Armbruster
2023-10-04 10:58 ` Markus Armbruster
2023-10-04 11:08 ` Thomas Huth
2023-10-04 11:33 ` Markus Armbruster
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).