[dpdk-dev] [PATCH v8 10/25] eal/pci: Helpers for device name parsing/update

2016-09-08 Thread Shreyansh Jain
Hi Reshma, On Tuesday 30 August 2016 10:04 PM, Pattan, Reshma wrote: > Hi, > >> +/** >> + * Utility function to write a pci device name, this device name can >> +later be >> + * used to retrieve the corresponding rte_pci_addr using >> +eal_parse_pci_* >> + * BDF helpers. >> + * >> + * @param addr

[dpdk-dev] [PATCH v8 10/25] eal/pci: Helpers for device name parsing/update

2016-08-31 Thread Shreyansh Jain
Hi, On Tuesday 30 August 2016 10:04 PM, Pattan, Reshma wrote: > Hi, > >> +/** >> + * Utility function to write a pci device name, this device name can >> +later be >> + * used to retrieve the corresponding rte_pci_addr using >> +eal_parse_pci_* >> + * BDF helpers. >> + * >> + * @param addr >> + *

[dpdk-dev] [PATCH v8 10/25] eal/pci: Helpers for device name parsing/update

2016-08-30 Thread Pattan, Reshma
Hi, > +/** > + * Utility function to write a pci device name, this device name can > +later be > + * used to retrieve the corresponding rte_pci_addr using > +eal_parse_pci_* > + * BDF helpers. > + * > + * @param addr > + * The PCI Bus-Device-Function address > + * @param output > + * The outpu

[dpdk-dev] [PATCH v8 10/25] eal/pci: Helpers for device name parsing/update

2016-08-26 Thread Shreyansh Jain
- Move rte_eth_dev_create_unique_device_name() from ether/rte_ethdev.c to common/include/rte_pci.h as rte_eal_pci_device_name(). Being a common method, can be used across crypto/net PCI PMDs. - Remove crypto specific routine and fallback to common name function. - Introduce a eal private Update