Re: [dpdk-dev] [PATCH] eal: changes for setting control thread mask

2021-03-27 Thread Kiran KN
> On Tue, Apr 21, 2020 at 9:42 AM Kiran KN wrote: > > Define a global variable ctrl_thread_set which the application can set. > > If this is the case, use this for setting control thread affinity instead > > of deducing it from the existing core pinnin

[dpdk-dev] GSO/GRO support

2017-02-10 Thread Kiran KN
We, at Juniper Opencontrail have added software support for TCP send offload and receive offload to DPDK. If the community is interested, we can publish/upstream it. Pl let us know what you think of it. Thanks, Kiran

Re: [dpdk-dev] GSO/GRO support

2017-02-13 Thread Kiran KN
/Juniper/contrail-vrouter/blob/master/dpdk/vr_dpdk_gso.c Will work on the RFC. - Kiran On 2/13/17, 5:58 AM, "Hu, Jiayu" wrote: > >> -Original Message- >> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Kiran KN >> Sent: Saturday, February 11, 2

[dpdk-dev] DPDK on Xen Dom-U hangs during hugepage setup

2014-10-30 Thread Kiran KN
Hello, I am trying to bring up DPDK on Xen Dom-U. Have followed all the steps in DPDK programmers guide in section 14.3. However, when I try to run testpmd or any other example application, it is getting stuck during hugepage setup. It hangs after the print "EAL: Setting up memory..." Has any

[dpdk-dev] DPDK on Xen Dom-U hangs during hugepage setup

2014-10-31 Thread Kiran KN
a kernel module called rte_dom0_mm. The instructions are in the getting started guide in the seccion 2.3.3. If you manage to execute any example please tell me, because I am stuck during the execution of the examples after configuring the environment. El 30/10/14 a las 19:15, Kiran KN escribi

[dpdk-dev] [PATCH] eal: changes for setting control thread mask

2020-04-21 Thread Kiran KN
Define a global variable ctrl_thread_set which the application can set. If this is the case, use this for setting control thread affinity instead of deducing it from the existing core pinning of the process. signed-off-by: Kiran KN --- lib/librte_eal/common/eal_common_options.c | 22

[dpdk-dev] [PATCH] net/bonding: Changes for accomodating jumbo frames in bond

2020-04-21 Thread Kiran KN
Propagate max rx packet length and jumbo offload capabilities to slaves from master Signed-off-by: Kiran KN --- drivers/net/bonding/rte_eth_bond_pmd.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/drivers/net/bonding/rte_eth_bond_pmd.c b/drivers/net/bonding

[dpdk-dev] [PATCH] net/af_packet: changes to accomodate jumbo frames

2020-04-21 Thread Kiran KN
Change the maximum packet length to accommodate jumbo frames signed-off-by: Kiran KN --- drivers/net/af_packet/rte_eth_af_packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/af_packet/rte_eth_af_packet.c b/drivers/net/af_packet/rte_eth_af_packet.c index

[dpdk-dev] [PATCH] net/bonding: Support configuration for LACP fast timers

2020-04-21 Thread Kiran KN
Add a rte APIs to set/get the timeout for LACP signed-off-by: Kiran KN --- drivers/net/bonding/eth_bond_private.h| 8 drivers/net/bonding/rte_eth_bond.h| 26 ++ drivers/net/bonding/rte_eth_bond_8023ad.c | 6 ++ drivers/net/bonding

[dpdk-dev] [PATCH] net/bonding: LACP Packet statistics support

2020-10-10 Thread Kiran KN
net/bonding: LACP Packet statistics support Store the LACP packets sent and received for each slave. This can be used for debug purposes from any DPDK application. Signed-Off-By: Kiran K N Change-Id: Iae82bd7d0879a4c4333a292c96d431798c56e301 --- drivers/net/bonding/eth_bond_8023ad_private.h |