DPDK usage discussions
 help / color / mirror / Atom feed
* [dpdk-users] IPsec offload for ixgbe/i40e drivers
@ 2017-10-03 12:35 Avi Cohen (A)
  2017-10-05 14:59 ` [dpdk-users] [ovs-discuss] " Greg Rose
  0 siblings, 1 reply; 5+ messages in thread
From: Avi Cohen (A) @ 2017-10-03 12:35 UTC (permalink / raw)
  To: users, ovs-discuss

Hi,
These Intel  NIC's:  X540, 82599, I40E - supports IPsec offload               
But I don't see that the drivers  supplied by Intel - handle it (??)       
Also I don't see any reference in the DPDK userspace drivers  librte_pmd_ixgbe.c ..             
Can someone tell if this is supported somewhere ?               
Best Regards           
Avi

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-users] [ovs-discuss] IPsec offload for ixgbe/i40e drivers
  2017-10-03 12:35 [dpdk-users] IPsec offload for ixgbe/i40e drivers Avi Cohen (A)
@ 2017-10-05 14:59 ` Greg Rose
  2017-10-09 10:10   ` Stokes, Ian
  0 siblings, 1 reply; 5+ messages in thread
From: Greg Rose @ 2017-10-05 14:59 UTC (permalink / raw)
  To: Avi Cohen (A), users, ovs-discuss

On 10/03/2017 05:35 AM, Avi Cohen (A) wrote:
> Hi,
> These Intel  NIC's:  X540, 82599, I40E - supports IPsec offload
> But I don't see that the drivers  supplied by Intel - handle it (??)
> Also I don't see any reference in the DPDK userspace drivers  librte_pmd_ixgbe.c ..
> Can someone tell if this is supported somewhere ?
> Best Regards
> Avi

Maybe ask the guys at Intel?

https://lists.osuosl.org/mailman/listinfo/intel-wired-lan

Regards,

- Greg

> _______________________________________________
> discuss mailing list
> discuss@openvswitch.org
> https://mail.openvswitch.org/mailman/listinfo/ovs-discuss
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-users] [ovs-discuss] IPsec offload for ixgbe/i40e drivers
  2017-10-05 14:59 ` [dpdk-users] [ovs-discuss] " Greg Rose
@ 2017-10-09 10:10   ` Stokes, Ian
  2017-10-15 14:37     ` Avi Cohen (A)
  0 siblings, 1 reply; 5+ messages in thread
From: Stokes, Ian @ 2017-10-09 10:10 UTC (permalink / raw)
  To: Greg Rose, Avi Cohen (A), users, ovs-discuss

> On 10/03/2017 05:35 AM, Avi Cohen (A) wrote:
> > Hi,
> > These Intel  NIC's:  X540, 82599, I40E - supports IPsec offload But I
> > don't see that the drivers  supplied by Intel - handle it (??) Also I
> > don't see any reference in the DPDK userspace drivers
> librte_pmd_ixgbe.c ..
> > Can someone tell if this is supported somewhere ?
> > Best Regards
> > Avi
> 

Hi Avi,

The NICs do support the IPsec offload feature but currently this is not supported in DPDK.

There is ongoing work with regards the RTE_SECURITY interfaces which will be used to handle this type of offload in the DPDK community . It will not be just Intel nics supporting this feature and is expected that all nics that do support it with DPDK will use the RTE_SECURITY framework. There is an ongoing discussion on the DPDK ML with regards to its design and use below

http://dpdk.org/dev/patchwork/patch/29835/

Currently I'm also looking at implementing IPsec (non-offload, look aside only) using VPMDs and QAT devices in OVS with DPDK although this work is at early stages. It may be of use to you as I would hope to integrate it with offload functionality down the line.

If you have any feedback I would be interested to hear.

https://mail.openvswitch.org/pipermail/ovs-dev/2017-August/337919.html

Thanks
Ian
> Maybe ask the guys at Intel?
> 
> https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
> 
> Regards,
> 
> - Greg

> 
> > _______________________________________________
> > discuss mailing list
> > discuss@openvswitch.org
> > https://mail.openvswitch.org/mailman/listinfo/ovs-discuss
> >
> 
> _______________________________________________
> discuss mailing list
> discuss@openvswitch.org
> https://mail.openvswitch.org/mailman/listinfo/ovs-discuss

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-users] [ovs-discuss] IPsec offload for ixgbe/i40e drivers
  2017-10-09 10:10   ` Stokes, Ian
@ 2017-10-15 14:37     ` Avi Cohen (A)
  2017-10-15 15:41       ` Stokes, Ian
  0 siblings, 1 reply; 5+ messages in thread
From: Avi Cohen (A) @ 2017-10-15 14:37 UTC (permalink / raw)
  To: Stokes, Ian, Greg Rose, users, ovs-discuss

Thank You Ian
I'll look into it and update you
Best Regards
Avi

> -----Original Message-----
> From: Stokes, Ian [mailto:ian.stokes@intel.com]
> Sent: Monday, 09 October, 2017 1:10 PM
> To: Greg Rose; Avi Cohen (A); users@dpdk.org; ovs-discuss@openvswitch.org
> Subject: RE: [ovs-discuss] IPsec offload for ixgbe/i40e drivers
> 
> > On 10/03/2017 05:35 AM, Avi Cohen (A) wrote:
> > > Hi,
> > > These Intel  NIC's:  X540, 82599, I40E - supports IPsec offload But
> > > I don't see that the drivers  supplied by Intel - handle it (??)
> > > Also I don't see any reference in the DPDK userspace drivers
> > librte_pmd_ixgbe.c ..
> > > Can someone tell if this is supported somewhere ?
> > > Best Regards
> > > Avi
> >
> 
> Hi Avi,
> 
> The NICs do support the IPsec offload feature but currently this is not supported
> in DPDK.
> 
> There is ongoing work with regards the RTE_SECURITY interfaces which will be
> used to handle this type of offload in the DPDK community . It will not be just
> Intel nics supporting this feature and is expected that all nics that do support it
> with DPDK will use the RTE_SECURITY framework. There is an ongoing
> discussion on the DPDK ML with regards to its design and use below
> 
> http://dpdk.org/dev/patchwork/patch/29835/
> 
> Currently I'm also looking at implementing IPsec (non-offload, look aside only)
> using VPMDs and QAT devices in OVS with DPDK although this work is at early
> stages. It may be of use to you as I would hope to integrate it with offload
> functionality down the line.
> 
> If you have any feedback I would be interested to hear.
> 
> https://mail.openvswitch.org/pipermail/ovs-dev/2017-August/337919.html
> 
> Thanks
> Ian
> > Maybe ask the guys at Intel?
> >
> > https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
> >
> > Regards,
> >
> > - Greg
> 
> >
> > > _______________________________________________
> > > discuss mailing list
> > > discuss@openvswitch.org
> > > https://mail.openvswitch.org/mailman/listinfo/ovs-discuss
> > >
> >
> > _______________________________________________
> > discuss mailing list
> > discuss@openvswitch.org
> > https://mail.openvswitch.org/mailman/listinfo/ovs-discuss

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-users] [ovs-discuss] IPsec offload for ixgbe/i40e drivers
  2017-10-15 14:37     ` Avi Cohen (A)
@ 2017-10-15 15:41       ` Stokes, Ian
  0 siblings, 0 replies; 5+ messages in thread
From: Stokes, Ian @ 2017-10-15 15:41 UTC (permalink / raw)
  To: Avi Cohen (A), Greg Rose, users, ovs-discuss

> Thank You Ian
> I'll look into it and update you
> Best Regards
> Avi

No problem Avi,

One minor correction to my original reply, I don't the X710/XL710 i40e devices support ipsec offload functionality (at least not from what I can see in their data sheets). The Intel X540 and 82599 family of NICs do have support. Their datasheets have the specifics with regards to capabilities.

Thanks
Ian
> 
> > -----Original Message-----
> > From: Stokes, Ian [mailto:ian.stokes@intel.com]
> > Sent: Monday, 09 October, 2017 1:10 PM
> > To: Greg Rose; Avi Cohen (A); users@dpdk.org;
> > ovs-discuss@openvswitch.org
> > Subject: RE: [ovs-discuss] IPsec offload for ixgbe/i40e drivers
> >
> > > On 10/03/2017 05:35 AM, Avi Cohen (A) wrote:
> > > > Hi,
> > > > These Intel  NIC's:  X540, 82599, I40E - supports IPsec offload
> > > > But I don't see that the drivers  supplied by Intel - handle it
> > > > (??) Also I don't see any reference in the DPDK userspace drivers
> > > librte_pmd_ixgbe.c ..
> > > > Can someone tell if this is supported somewhere ?
> > > > Best Regards
> > > > Avi
> > >
> >
> > Hi Avi,
> >
> > The NICs do support the IPsec offload feature but currently this is
> > not supported in DPDK.
> >
> > There is ongoing work with regards the RTE_SECURITY interfaces which
> > will be used to handle this type of offload in the DPDK community . It
> > will not be just Intel nics supporting this feature and is expected
> > that all nics that do support it with DPDK will use the RTE_SECURITY
> > framework. There is an ongoing discussion on the DPDK ML with regards
> > to its design and use below
> >
> > http://dpdk.org/dev/patchwork/patch/29835/
> >
> > Currently I'm also looking at implementing IPsec (non-offload, look
> > aside only) using VPMDs and QAT devices in OVS with DPDK although this
> > work is at early stages. It may be of use to you as I would hope to
> > integrate it with offload functionality down the line.
> >
> > If you have any feedback I would be interested to hear.
> >
> > https://mail.openvswitch.org/pipermail/ovs-dev/2017-August/337919.html
> >
> > Thanks
> > Ian
> > > Maybe ask the guys at Intel?
> > >
> > > https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
> > >
> > > Regards,
> > >
> > > - Greg
> >
> > >
> > > > _______________________________________________
> > > > discuss mailing list
> > > > discuss@openvswitch.org
> > > > https://mail.openvswitch.org/mailman/listinfo/ovs-discuss
> > > >
> > >
> > > _______________________________________________
> > > discuss mailing list
> > > discuss@openvswitch.org
> > > https://mail.openvswitch.org/mailman/listinfo/ovs-discuss

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-10-15 15:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-03 12:35 [dpdk-users] IPsec offload for ixgbe/i40e drivers Avi Cohen (A)
2017-10-05 14:59 ` [dpdk-users] [ovs-discuss] " Greg Rose
2017-10-09 10:10   ` Stokes, Ian
2017-10-15 14:37     ` Avi Cohen (A)
2017-10-15 15:41       ` Stokes, Ian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).