netdev-dpdk: remove duplicated code in netdev_dpdk_get_status
authorxubinbin <xu.binbin1@zte.com.cn>
Thu, 21 Jul 2016 13:52:29 +0000 (21:52 +0800)
committerDaniele Di Proietto <diproiettod@vmware.com>
Mon, 25 Jul 2016 19:58:27 +0000 (12:58 -0700)
Put "driver_name" into "args" twice, that's meaninglessness.
So need to remove duplicated code.

Signed-off-by: Binbin Xu <xu.binbin1@zte.com.cn>
Signed-off-by: Daniele Di Proietto <diproiettod@vmware.com>
AUTHORS
lib/netdev-dpdk.c

diff --git a/AUTHORS b/AUTHORS
index cc6eb5f..334e17f 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -35,6 +35,7 @@ Benli Ye                daniely@vmware.com
 Bert Vermeulen          bert@biot.com
 Bhanuprakash Bodireddy  bhanuprakash.bodireddy@intel.com
 Billy O'Mahony          billy.o.mahony@intel.com
+Binbin Xu               xu.binbin1@zte.com.cn
 Brian Kruger            bkruger+ovsdev@gmail.com
 Bruce Davie             bsd@nicira.com
 Bryan Phillippe         bp@toroki.com
index 8ca7af4..af87f18 100644 (file)
@@ -2081,8 +2081,6 @@ netdev_dpdk_get_status(const struct netdev *netdev, struct smap *args)
     rte_eth_dev_info_get(dev->port_id, &dev_info);
     ovs_mutex_unlock(&dev->mutex);
 
-    smap_add_format(args, "driver_name", "%s", dev_info.driver_name);
-
     smap_add_format(args, "port_no", "%d", dev->port_id);
     smap_add_format(args, "numa_id", "%d", rte_eth_dev_socket_id(dev->port_id));
     smap_add_format(args, "driver_name", "%s", dev_info.driver_name);