DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] net/cxgbe: fix dangling pointer for gcc12
@ 2022-01-17 14:36 Ferruh Yigit
  2022-01-19 22:01 ` Rahul Lakkireddy
  0 siblings, 1 reply; 2+ messages in thread
From: Ferruh Yigit @ 2022-01-17 14:36 UTC (permalink / raw)
  To: Rahul Lakkireddy; +Cc: dev, Ferruh Yigit

Observed with: gcc (GCC) 12.0.0 20220116 (experimental)

In file included from ../lib/eal/linux/include/rte_os.h:14,
                 from ../lib/eal/include/rte_common.h:28,
                 from ../lib/eal/include/rte_log.h:25,
                 from ../lib/ethdev/rte_ethdev.h:164,
                 from ../lib/ethdev/ethdev_driver.h:18,
                 from ../drivers/net/cxgbe/base/t4vf_hw.c:6:
In function ‘t4_os_atomic_add_tail’,
    inlined from ‘t4vf_wr_mbox_core’ at ../drivers/net/cxgbe/base/t4vf_hw.c:115:2:
../drivers/net/cxgbe/base/adapter.h:742:9: error: storing the address of local variable ‘entry’ in ‘((struct mbox_list *)adapter)[96].tqh_last’ [-Werror=dangling-pointer=]
  742 |         TAILQ_INSERT_TAIL(head, entry, next);
      |         ^~~~~~~~~~~~~~~~~
../drivers/net/cxgbe/base/t4vf_hw.c: In function ‘t4vf_wr_mbox_core’:
../drivers/net/cxgbe/base/t4vf_hw.c:86:27: note: ‘entry’ declared here
   86 |         struct mbox_entry entry;
      |                           ^~~~~
../drivers/net/cxgbe/base/t4vf_hw.c:86:27: note: ‘adapter’ declared here

It is a valid compiler warning, make local variable a global one.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>

---

Fix is done in a quickest way, mainly to report the issue,
please feel free to suggest another solution for the build error.
---
 drivers/net/cxgbe/base/t4vf_hw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/cxgbe/base/t4vf_hw.c b/drivers/net/cxgbe/base/t4vf_hw.c
index 561d759dbc0d..b42c4e78eba9 100644
--- a/drivers/net/cxgbe/base/t4vf_hw.c
+++ b/drivers/net/cxgbe/base/t4vf_hw.c
@@ -83,7 +83,7 @@ int t4vf_wr_mbox_core(struct adapter *adapter,
 
 	u32 mbox_ctl = T4VF_CIM_BASE_ADDR + A_CIM_VF_EXT_MAILBOX_CTRL;
 	__be64 cmd_rpl[MBOX_LEN / 8];
-	struct mbox_entry entry;
+	static struct mbox_entry entry;
 	unsigned int delay_idx;
 	u32 v, mbox_data;
 	const __be64 *p;
-- 
2.34.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] net/cxgbe: fix dangling pointer for gcc12
  2022-01-17 14:36 [PATCH] net/cxgbe: fix dangling pointer for gcc12 Ferruh Yigit
@ 2022-01-19 22:01 ` Rahul Lakkireddy
  0 siblings, 0 replies; 2+ messages in thread
From: Rahul Lakkireddy @ 2022-01-19 22:01 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev

Hi Ferruh,

On Monday, January 01/17/22, 2022 at 14:36:30 +0000, Ferruh Yigit wrote:
> Observed with: gcc (GCC) 12.0.0 20220116 (experimental)
> 
> In file included from ../lib/eal/linux/include/rte_os.h:14,
>                  from ../lib/eal/include/rte_common.h:28,
>                  from ../lib/eal/include/rte_log.h:25,
>                  from ../lib/ethdev/rte_ethdev.h:164,
>                  from ../lib/ethdev/ethdev_driver.h:18,
>                  from ../drivers/net/cxgbe/base/t4vf_hw.c:6:
> In function ‘t4_os_atomic_add_tail’,
>     inlined from ‘t4vf_wr_mbox_core’ at ../drivers/net/cxgbe/base/t4vf_hw.c:115:2:
> ../drivers/net/cxgbe/base/adapter.h:742:9: error: storing the address of local variable ‘entry’ in ‘((struct mbox_list *)adapter)[96].tqh_last’ [-Werror=dangling-pointer=]
>   742 |         TAILQ_INSERT_TAIL(head, entry, next);
>       |         ^~~~~~~~~~~~~~~~~
> ../drivers/net/cxgbe/base/t4vf_hw.c: In function ‘t4vf_wr_mbox_core’:
> ../drivers/net/cxgbe/base/t4vf_hw.c:86:27: note: ‘entry’ declared here
>    86 |         struct mbox_entry entry;
>       |                           ^~~~~
> ../drivers/net/cxgbe/base/t4vf_hw.c:86:27: note: ‘adapter’ declared here
> 
> It is a valid compiler warning, make local variable a global one.
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> 
> ---
> 
> Fix is done in a quickest way, mainly to report the issue,
> please feel free to suggest another solution for the build error.
> ---

Thanks for reporting this issue.

The intention of this code is to use the address of the local variable
stored on stack to serialize access from multiple threads. This
address is used only within the scope of this function and is not
accessed from outside. I'm also stumped on why this warning is not
showing up inside t4_wr_mbox_meat_timeout() in t4_hw.c, which also
has similar code.

Nevertheless, I've sent a patch at [1] to dynamically allocate/free
the memory instead and fix the warning.

[1] https://mails.dpdk.org/archives/dev/2022-January/232816.html

Thanks,
Rahul

>  drivers/net/cxgbe/base/t4vf_hw.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/cxgbe/base/t4vf_hw.c b/drivers/net/cxgbe/base/t4vf_hw.c
> index 561d759dbc0d..b42c4e78eba9 100644
> --- a/drivers/net/cxgbe/base/t4vf_hw.c
> +++ b/drivers/net/cxgbe/base/t4vf_hw.c
> @@ -83,7 +83,7 @@ int t4vf_wr_mbox_core(struct adapter *adapter,
>  
>  	u32 mbox_ctl = T4VF_CIM_BASE_ADDR + A_CIM_VF_EXT_MAILBOX_CTRL;
>  	__be64 cmd_rpl[MBOX_LEN / 8];
> -	struct mbox_entry entry;
> +	static struct mbox_entry entry;
>  	unsigned int delay_idx;
>  	u32 v, mbox_data;
>  	const __be64 *p;
> -- 
> 2.34.1
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-01-19 22:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-17 14:36 [PATCH] net/cxgbe: fix dangling pointer for gcc12 Ferruh Yigit
2022-01-19 22:01 ` Rahul Lakkireddy

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).