DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/virtio: fix build with gcc optimization on
@ 2018-07-04 10:56 Marvin Liu
  2018-07-04  9:52 ` Ferruh Yigit
  0 siblings, 1 reply; 3+ messages in thread
From: Marvin Liu @ 2018-07-04 10:56 UTC (permalink / raw)
  To: maxime.coquelin, ferruh.yigit; +Cc: dev, tiwei.bie, Marvin Liu

build error on gcc version 8.1.1 20180502 (Red Hat 8.1.1-1),
with optimization level >= O2

.../drivers/net/virtio/virtio_rxtx.c:
   In function ‘virtio_xmit_cleanup_inorder’:
.../drivers/net/virtio/virtio_rxtx.c:195:24:
   error: ‘desc_idx’ may be used uninitialized in this function
   [-Werror=maybe-uninitialized]
  uint16_t i, used_idx, desc_idx, last_idx;
                        ^~~~~~~~
Optimization option fcode-hoisting will cause error on gcc 8.x.x.
Initialize desc_idx before using can fix build error.

Fixes: e3851816e63c ("net/virtio: support in-order Rx and Tx")

Reported-by: Ferruh Yigit <ferruh.yigit@intel.com>
Signed-off-by: Marvin Liu <yong.liu@intel.com>

diff --git a/drivers/net/virtio/virtio_rxtx.c b/drivers/net/virtio/virtio_rxtx.c
index 6394071b8..19beb4bf4 100644
--- a/drivers/net/virtio/virtio_rxtx.c
+++ b/drivers/net/virtio/virtio_rxtx.c
@@ -192,7 +192,8 @@ virtio_xmit_cleanup(struct virtqueue *vq, uint16_t num)
 static void
 virtio_xmit_cleanup_inorder(struct virtqueue *vq, uint16_t num)
 {
-	uint16_t i, used_idx, desc_idx, last_idx;
+	uint16_t i, used_idx, last_idx;
+	uint16_t desc_idx = 0;
 	int16_t free_cnt = 0;
 	struct vq_desc_extra *dxp = NULL;
 
-- 
2.17.0

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

end of thread, other threads:[~2018-07-06  2:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-04 10:56 [dpdk-dev] [PATCH] net/virtio: fix build with gcc optimization on Marvin Liu
2018-07-04  9:52 ` Ferruh Yigit
2018-07-06  2:00   ` Liu, Yong

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