[dpdk-dev] [PATCH] e1000: enable jumbo frame support for Intel 82583V

2015-07-22 Thread Klaus Degner
This patch enables jumbo frame support for the 82583V. It has been tested ( rx and tx ) with real HW. Signed-off-by: Klaus Degner --- drivers/net/e1000/em_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/e1000/em_ethdev.c b/drivers/net/e1000/em_ethdev.c

[dpdk-dev] jumbo frame support for 82583V

2015-07-20 Thread Klaus Degner
Hi Wenzhuo, > Hi Klaus, > >> -Original Message----- >> From: Klaus Degner [mailto:kd at allegro-packets.com] >> Sent: Friday, July 17, 2015 7:56 PM >> To: Lu, Wenzhuo >> Cc: dev at dpdk.org >> Subject: jumbo frame support for 82583V >> >>

[dpdk-dev] jumbo frame support for 82583V

2015-07-17 Thread Klaus Degner
Hi Wenzhuo, We are testing different Intel NICs for DPDK. We have tested the master branch with the support for 82583V Intel chip. It works very well except that we can only use up to 1518 bytes for maximum packet capture. We have debugged this and it is restricted in the initialization: http://d

[dpdk-dev] [PATCH v5] pcap: add support for rx and tx byte counters

2015-07-13 Thread Klaus Degner
Added RX and TX bytes counter support to the PCAP statistics. Added TX counter support for pcap dumper and interface functions. Renamed RX and TX packet counters for consistency. Signed-off-by: Klaus Degner --- drivers/net/pcap/rte_eth_pcap.c | 38 ++ 1 file

[dpdk-dev] [PATCH] pcap: add support for rx and tx byte counters

2015-07-13 Thread Klaus Degner
add support for rx and tx byte counters added support for tx pcap dumper and interface renamed packet counters for consistency Signed-off-by: Klaus Degner --- drivers/net/pcap/rte_eth_pcap.c | 38 ++ 1 file changed, 30 insertions(+), 8 deletions(-) diff

[dpdk-dev] [PATCH v3] pcap: add support for rx and tx byte counters

2015-07-13 Thread Klaus Degner
Hi John, Thank you again for your review. I will work on a v4 with your input. Klaus Am 13.07.15 um 14:56 schrieb Mcnamara, John: >> -Original Message- >> From: Klaus Degner [mailto:kd at allegro-packets.com] >> Sent: Friday, July 10, 2015 8:13 PM >> To: dev at

[dpdk-dev] [PATCH v3] pcap: add support for rx and tx byte counters

2015-07-10 Thread Klaus Degner
add support for rx and tx byte counters in addition to existing rx and tx packet counters, updated with new dpdk master branch --- drivers/net/pcap/rte_eth_pcap.c | 22 -- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/drivers/net/pcap/rte_eth_pcap.c b/drivers/

[dpdk-dev] [PATCH v2] pcap: add support for rx and tx byte counters

2015-07-10 Thread Klaus Degner
pcap: add support for rx and tx byte counters in addition to existing rx and tx packet counters Signed-off-by: Klaus Degner --- drivers/net/pcap/rte_eth_pcap.c | 22 -- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/drivers/net/pcap/rte_eth_pcap.c b/drivers

[dpdk-dev] [PATCH] add rx and tx byte counter statistics for PCAP PMD

2015-07-09 Thread Klaus Degner
Hi John, Thank you for your review. I will submit a v2 of the patch. Klaus Am 08.07.15 um 18:11 schrieb Mcnamara, John: >> -Original Message- >> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Klaus Degner >> Sent: Tuesday, June 30, 2015 12:40 PM >

[dpdk-dev] [PATCH] add rx and tx byte counter statistics for PCAP PMD

2015-06-30 Thread Klaus Degner
PCAP PMD vdev accounts only rx and tx packet statistics. This patch adds support for rx and tx bytes statistics. Signed-off-by: Klaus Degner --- drivers/net/pcap/rte_eth_pcap.c | 21 +++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/drivers/net/pcap