patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH] net/bnxt: fix compilation
@ 2017-10-09 13:59 Mark Kavanagh
  2017-10-09 14:14 ` De Lara Guarch, Pablo
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Kavanagh @ 2017-10-09 13:59 UTC (permalink / raw)
  To: dev; +Cc: stable, ferruh.yigit, ajit.khaparde, Mark Kavanagh

As of 5ef3b79fdfe6f, compilation of DPDK fails with the following
error message:
"bnxt_filter.c:960:117: error: ‘vnic’ may be used uninitialized in this
function [-Werror=maybe-uninitialized]".

Resolve this by initializing 'vnic' to NULL;

Fixes: 5ef3b79fdfe6f ("net/bnxt: support flow filter ops")
CC: stable@dpdk.org

Signed-off-by: Mark Kavanagh <mark.b.kavanagh@intel.com>
---
 drivers/net/bnxt/bnxt_filter.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/bnxt/bnxt_filter.c b/drivers/net/bnxt/bnxt_filter.c
index d470be2..9f171fd 100644
--- a/drivers/net/bnxt/bnxt_filter.c
+++ b/drivers/net/bnxt/bnxt_filter.c
@@ -906,7 +906,7 @@ struct bnxt_filter_info *
 {
 	struct bnxt *bp = (struct bnxt *)dev->data->dev_private;
 	struct bnxt_filter_info *filter;
-	struct bnxt_vnic_info *vnic;
+	struct bnxt_vnic_info *vnic = NULL;
 	struct rte_flow *flow;
 	unsigned int i;
 	int ret = 0;
-- 
1.9.3

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

* Re: [dpdk-stable] [PATCH] net/bnxt: fix compilation
  2017-10-09 13:59 [dpdk-stable] [PATCH] net/bnxt: fix compilation Mark Kavanagh
@ 2017-10-09 14:14 ` De Lara Guarch, Pablo
  0 siblings, 0 replies; 2+ messages in thread
From: De Lara Guarch, Pablo @ 2017-10-09 14:14 UTC (permalink / raw)
  To: Kavanagh, Mark B, dev
  Cc: stable, Yigit, Ferruh, ajit.khaparde, Kavanagh, Mark B



> -----Original Message-----
> From: stable [mailto:stable-bounces@dpdk.org] On Behalf Of Mark
> Kavanagh
> Sent: Monday, October 9, 2017 3:00 PM
> To: dev@dpdk.org
> Cc: stable@dpdk.org; Yigit, Ferruh <ferruh.yigit@intel.com>;
> ajit.khaparde@broadcom.com; Kavanagh, Mark B
> <mark.b.kavanagh@intel.com>
> Subject: [dpdk-stable] [PATCH] net/bnxt: fix compilation
> 
> As of 5ef3b79fdfe6f, compilation of DPDK fails with the following error
> message:
> "bnxt_filter.c:960:117: error: ‘vnic’ may be used uninitialized in this
> function [-Werror=maybe-uninitialized]".
> 
> Resolve this by initializing 'vnic' to NULL;
> 
> Fixes: 5ef3b79fdfe6f ("net/bnxt: support flow filter ops")
> CC: stable@dpdk.org

Hi Mark,

You don't need to cc stable, since you are fixing code that was sent in this release.
Only fixes for patches sent in previous DPDK versions need to be applied to the stable repo.

Regards,
Pablo

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

end of thread, other threads:[~2017-10-09 14:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-09 13:59 [dpdk-stable] [PATCH] net/bnxt: fix compilation Mark Kavanagh
2017-10-09 14:14 ` De Lara Guarch, Pablo

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