diff options
author | Ferruh Yigit <ferruh.yigit@intel.com> | 2016-07-22 15:13:36 +0100 |
---|---|---|
committer | Thomas Monjalon <thomas.monjalon@6wind.com> | 2016-07-22 18:00:41 +0200 |
commit | aedbf1e308a0147662363346e0809fc14ab3d8f2 (patch) | |
tree | 8c9bd62cbba100559e8abe6155cd37df2960de73 /examples | |
parent | 1c4466cb9907cb072852d0f992add6cc5a23443d (diff) | |
download | dpdk-aedbf1e308a0147662363346e0809fc14ab3d8f2.zip dpdk-aedbf1e308a0147662363346e0809fc14ab3d8f2.tar.gz dpdk-aedbf1e308a0147662363346e0809fc14ab3d8f2.tar.xz |
examples/l2fwd-ivshmem: fix build with icc
icc version 16.0.2, compile error:
examples/l2fwd-ivshmem/host/host.c(157):
error #3656: variable "total_vm_packets_dropped"
may be used before its value is set
total_vm_packets_dropped += ctrl->vm_ports[portid].stats.dropped;
^
Fixes: 6aa497249172 ("examples/l2fwd-ivshmem: import sample application")
Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/l2fwd-ivshmem/host/host.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/l2fwd-ivshmem/host/host.c b/examples/l2fwd-ivshmem/host/host.c index cd284b7..da7b00d 100644 --- a/examples/l2fwd-ivshmem/host/host.c +++ b/examples/l2fwd-ivshmem/host/host.c @@ -110,7 +110,8 @@ static void print_stats(void) { uint64_t total_packets_dropped, total_packets_tx, total_packets_rx; - uint64_t total_vm_packets_dropped, total_vm_packets_tx, total_vm_packets_rx; + uint64_t total_vm_packets_dropped = 0; + uint64_t total_vm_packets_tx, total_vm_packets_rx; unsigned portid; total_packets_dropped = 0; |