[dpdk-dev] are these bypass api supported on Intel Bandon Beach card : of device id : 8086:155d

2014-03-01 Thread Sharath
Hi we are using DPDK 1.5.1_7. our PCI slot has Intel Bandon Beach NIC. Can anyone please let me know, whether the below api's are supported in the NIC type [8086:155d] int rte_eth_dev_bypass_init (uint8_t port) * int rte_eth_dev_bypass_state_show (uint8_t port, uint32_t _state) * int rte_eth_

[dpdk-dev] [PATCH v2 11/11] testpmd: add several dump commands, useful for debug

2014-03-01 Thread Olivier Matz
Copy all the dump commands provided in app/test into app/testpmd. These commands are useful to debug a problem when using testpmd. Signed-off-by: Olivier Matz --- app/test-pmd/cmdline.c | 113 + 1 file changed, 113 insertions(+) v2 changes: * pass

[dpdk-dev] [PATCH v2 10/11] device-args: allow to provide per pci device command line arguments

2014-03-01 Thread Olivier Matz
Some PCI drivers may require some specific initialization arguments at start-up. Even if unused today, adding this feature seems coherent with virtual devices in order to provide a full-featured rte_devargs framework. In the future, it could be added in pmd_ixgbe or pmd_igb for instance to enable

[dpdk-dev] [PATCH v2 09/11] device-args: replace use-device eal option by pci-whitelist and vdev

2014-03-01 Thread Olivier Matz
This commit splits the "--use-device" option in two new options: - "--pci-whitelist or -w": add a PCI device in the white list - "--vdev": instanciate a new virtual device Before the patch, the same option "--use-device" was used for these 2 use-cases. By the way, we also add "--pci-blacklist" i

[dpdk-dev] [PATCH v2 03/11] devices-args: use rte_devargs and remove old whitelist code

2014-03-01 Thread Olivier Matz
Remove old whitelist code: - remove references to rte_pmd_ring, rte_pmd_pcap and pmd_xenvirt in is_valid_wl_entry() as we want to be able to register external virtual drivers as a shared library. Moreover this code was duplicated with dev_types[] from eal_common_pci.c - eal_common_whitelist.c

[dpdk-dev] [PATCH v2 02/11] devices-args: introduce rte_devargs in eal

2014-03-01 Thread Olivier Matz
This commit introduces a new API for storing device arguments given by the user. It only adds the framework and the test. The modification of EAL to use this new module is done in next commit. The final goals: - unify pci-blacklist, pci-whitelist, and virtual devices arguments in one file - all

[dpdk-dev] [PATCH 02/11] devices-args: introduce rte_devargs in eal

2014-03-01 Thread Olivier MATZ
Hi Stephen, On 02/28/2014 10:39 PM, Stephen Hemminger wrote: > Minor nit. please align case with switch(). > The DPDK in general follows Linux coding style. > In fact, I have run the code through checkpatch to find style issues. Thank you for reporting this. Following you comment, I launched chec