[dpdk-dev] Port merging

2013-07-29 Thread Pichon Julien
, Julien. -- next part -- An HTML attachment was scrubbed... URL: <http://dpdk.org/ml/archives/dev/attachments/20130729/117053ae/attachment.html>

[dpdk-dev] [PATCH 0/4] build fixes for recent distros

2013-07-29 Thread Thomas Monjalon
KNI is an out-of-tree kernel driver, so it needs some updates to follow recent API changes in Linux. There is also a patch to build with latest GCC. Needless to say, these patches are totally useless for Debian users :) --- Thomas Monjalon (4): kni: fix build with kernel 3.8 kni: fix build

[dpdk-dev] [PATCH 1/4] kni: fix build with kernel 3.8

2013-07-29 Thread Thomas Monjalon
- timecompare has been removed. (see Linux commit 65f8f9a1c1db831e5159e3e3e50912d1f214cd0c) - annotations __devinit and __devexit have been removed. Signed-off-by: Thomas Monjalon --- lib/librte_eal/linuxapp/kni/ethtool/igb/igb.h | 17 - lib/librte_eal/linuxapp/kni/ethtool/igb/igb_main.c

[dpdk-dev] [PATCH 2/4] kni: fix build with kernel 3.9

2013-07-29 Thread Thomas Monjalon
hlist API has changes. See Linux commit b67bfe0d42cac56c512dd5da4b1b347a23f4b70a. Signed-off-by: Thomas Monjalon --- .../linuxapp/kni/ethtool/ixgbe/ixgbe_ethtool.c | 12 +++--- .../linuxapp/kni/ethtool/ixgbe/kcompat.h | 39 +--- 2 files changed, 32 insertions(+)

[dpdk-dev] [PATCH 3/4] kni: fix build with kernel 3.10

2013-07-29 Thread Thomas Monjalon
- The flags NETIF_F_HW_VLAN_* have been renamed to NETIF_F_HW_VLAN_CTAG_*. See Linux commit f646968f8f7c624587de729115d802372b9063dd. - The VLAN protocol must be specified. See Linux commits 86a9bad3ab6b6f858fd4443b48738cabbb6d094c and 80d5c3689b886308247da295a228a54df49a44f6. Signed-off-by: Thom

[dpdk-dev] [PATCH 4/4] app: fix build with gcc 4.8

2013-07-29 Thread Thomas Monjalon
GCC 4.8 was producing this error: argument to ?sizeof? in ?strncmp? call is the same expression as the second source; did you mean to provide an explicit length? [-Werror=sizeof-pointer-memaccess] Signed-off-by: Thomas Monjalon --- app/test/test_cmdline_string.c |2 +-

[dpdk-dev] NIC Stops Transmitting

2013-07-29 Thread Scott Talbert
On Fri, 26 Jul 2013, Scott Talbert wrote: >> I am wondering whether you use multiple cores accessing the same >> receive queue. I had this problem before, but after I make the same >> number of receiving queues as the number of receiving cores, the >> problem disappeared. I did not dig more since