ethdev: use device name from device structure
authorFerruh Yigit <ferruh.yigit@intel.com>
Fri, 9 Jun 2017 18:36:06 +0000 (19:36 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 5 Jul 2017 22:17:11 +0000 (00:17 +0200)
commita1e7c17555e8f77d520ba5f06ed26c00e77a2bd1
treee4df9f27ce96162673ec5d70347ada8a3875816d
parent4be4659a934b35bf963d3b3822bef5fed6203365
ethdev: use device name from device structure

Device name resides in two different locations, in rte_device->name and
in ethernet device private data.

For now, the copy in the ethernet device private data is required for
multi process support, the name is the how secondary process finds about
primary process device.

But in the ethdev library some eth_dev->data->name usage can be
converted to rte_device->name.

This patch updates ethdev to use rte_device->name when possible.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
lib/librte_ether/rte_ethdev.c