bus/fslmc: set the dpaa2 device name
rte_eth_dev_allocated expect the device name to be filled. Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
This commit is contained in:
parent
29eed50e37
commit
de85636da0
@ -551,10 +551,11 @@ int fslmc_vfio_process_group(void)
|
||||
dev->dev_type = (strcmp(object_type, "dpseci")) ?
|
||||
DPAA2_MC_DPNI_DEVID : DPAA2_MC_DPSECI_DEVID;
|
||||
|
||||
FSLMC_VFIO_LOG(DEBUG, "DPAA2: Added [%s-%d]",
|
||||
object_type, object_id);
|
||||
sprintf(dev->name, "%s.%d", object_type, object_id);
|
||||
dev->device.name = dev->name;
|
||||
|
||||
fslmc_bus_add_device(dev);
|
||||
FSLMC_VFIO_LOG(DEBUG, "DPAA2: Added %s", dev->name);
|
||||
} else {
|
||||
/* Parse all other objects */
|
||||
struct rte_dpaa2_object *object;
|
||||
|
@ -78,6 +78,7 @@ struct rte_dpaa2_device {
|
||||
uint16_t object_id; /**< DPAA2 Object ID */
|
||||
struct rte_intr_handle intr_handle; /**< Interrupt handle */
|
||||
struct rte_dpaa2_driver *driver; /**< Associated driver */
|
||||
char name[32]; /**< DPAA2 Object name*/
|
||||
};
|
||||
|
||||
typedef int (*rte_dpaa2_probe_t)(struct rte_dpaa2_driver *dpaa2_drv,
|
||||
|
@ -1531,13 +1531,9 @@ rte_dpaa2_probe(struct rte_dpaa2_driver *dpaa2_drv,
|
||||
struct rte_dpaa2_device *dpaa2_dev)
|
||||
{
|
||||
struct rte_eth_dev *eth_dev;
|
||||
char ethdev_name[RTE_ETH_NAME_MAX_LEN];
|
||||
|
||||
int diag;
|
||||
|
||||
sprintf(ethdev_name, "dpni-%d", dpaa2_dev->object_id);
|
||||
|
||||
eth_dev = rte_eth_dev_allocate(ethdev_name);
|
||||
eth_dev = rte_eth_dev_allocate(dpaa2_dev->device.name);
|
||||
if (eth_dev == NULL)
|
||||
return -ENOMEM;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user