[dpdk-dev] [PATCH] Fix C++11 compilation error with rte_pci.h

2015-02-19 Thread Stefan Puiu
In C++11 concatenated string literals need to have a space in between. Found while trying to compile with clang++-3.4. Sample error message: dpdk/include/rte_pci.h:96:26: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]

[dpdk-dev] [PATCH] Fix compilation error when compiling with clang-3.4 in C++11 mode: in C++11 concatenated string literals need to have a space in between.

2015-02-19 Thread Stefan Puiu
From: Stefan Puiu Sample error message: dpdk/include/rte_pci.h:96:26: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] --- lib/librte_eal/common/include/rte_pci.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-

[dpdk-dev] Binding NICs while running DPDK app

2015-02-19 Thread Daniele Di Proietto
Hi, I would like to implement a scenario like the following: - Some NICs are bound to the igb_uio driver - A DPDK application is started and it sends/receives packet to/from those NICs. - Another set of NICs are bound to the igb_uio driver. - The same DPDK application continues processing packets

<    1   2