[dpdk-dev] I want to post my patch about examples/kni

2015-08-04 Thread EaseTheWorld Mr.
but I don't have smtp server... Can anybody help with this? diff --git a/examples/kni/main.c b/examples/kni/main.c index 6f74d8e..6d434ad 100644 --- a/examples/kni/main.c +++ b/examples/kni/main.c @@ -830,9 +830,9 @@ kni_free_kni(uint8_t port_id) if (port_id >= RTE_MAX_ETHPORTS || !p[port_

[dpdk-dev] Using kni for tcp stream classification

2015-08-05 Thread EaseTheWorld Mr.
Hello. I'm using kni with a libpcap-based program. I will sort packets by tcp stream in kni so the program can concentrate on the business logic. My question is - Is kni guaranteed to keep the packet order? rte_kni_tx_burst(p1)->rte_kni_tx_burst(p2)->rte_kni_tx_burst(p3) then I want pcap_loop()

[dpdk-dev] KNI example with pcap file

2015-07-28 Thread EaseTheWorld Mr.
Hello. I'm a DPDK newbie, playing with KNI. I have a packet analysis application like tshark, which receives packets from network interface or pcap file. My plan with KNI is 1) Performance improvement without modifying my program 2) Add ip_reassembly, acl to kni example. (rte_eth_rx_burst -> i