netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/8] openvswitch: Add vxlan tunneling support.
@ 2013-06-20  7:26 Pravin B Shelar
  2013-06-20 15:58 ` Stephen Hemminger
  0 siblings, 1 reply; 6+ messages in thread
From: Pravin B Shelar @ 2013-06-20  7:26 UTC (permalink / raw)
  To: netdev, dev; +Cc: Pravin B Shelar

First two patches fixes vxlan issues.  Next two patches
extends vxlan so that openvswitch can share vxlan udp port
with vxlan module. Rest of patches refactors vxlan data
plane so that ovs can share that code with vxlan module.
Last patch adds vxlan-vport to openvswitch.

Pravin B Shelar (8):
  vxlan: Fix error handling while creating device.
  vxlan: Fix sparse wornings.
  vxlan: Allow multiple recieve handlers.
  vxlan: Extend vxlan handlers for openvswitch.
  vxlan: Factor out vxlan send api.
  vxlan: Improve vxlan headroom calculation.
  vxlan: Add tx-vlan offload support.
  openvswitch: Add vxlan tunneling support.

 drivers/net/vxlan.c              |  337 +++++++++++++++++++++++++-------------
 include/net/vxlan.h              |   33 ++++
 include/uapi/linux/openvswitch.h |   11 ++
 net/openvswitch/Kconfig          |    1 +
 net/openvswitch/Makefile         |    3 +-
 net/openvswitch/vport-vxlan.c    |  220 +++++++++++++++++++++++++
 net/openvswitch/vport.c          |    3 +
 net/openvswitch/vport.h          |    1 +
 8 files changed, 490 insertions(+), 119 deletions(-)
 create mode 100644 include/net/vxlan.h
 create mode 100644 net/openvswitch/vport-vxlan.c

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

* Re: [PATCH net-next 0/8] openvswitch: Add vxlan tunneling support.
  2013-06-20  7:26 [PATCH net-next 0/8] openvswitch: Add vxlan tunneling support Pravin B Shelar
@ 2013-06-20 15:58 ` Stephen Hemminger
  2013-06-20 17:13   ` Stephen Hemminger
  2013-06-20 17:14   ` [ovs-dev] " Jesse Gross
  0 siblings, 2 replies; 6+ messages in thread
From: Stephen Hemminger @ 2013-06-20 15:58 UTC (permalink / raw)
  To: Pravin B Shelar; +Cc: netdev, dev

On Thu, 20 Jun 2013 00:26:15 -0700
Pravin B Shelar <pshelar@nicira.com> wrote:

> First two patches fixes vxlan issues.  Next two patches
> extends vxlan so that openvswitch can share vxlan udp port
> with vxlan module. Rest of patches refactors vxlan data
> plane so that ovs can share that code with vxlan module.
> Last patch adds vxlan-vport to openvswitch.
> 
> Pravin B Shelar (8):
>   vxlan: Fix error handling while creating device.
>   vxlan: Fix sparse wornings.
>   vxlan: Allow multiple recieve handlers.
>   vxlan: Extend vxlan handlers for openvswitch.
>   vxlan: Factor out vxlan send api.
>   vxlan: Improve vxlan headroom calculation.
>   vxlan: Add tx-vlan offload support.
>   openvswitch: Add vxlan tunneling support.
> 
>  drivers/net/vxlan.c              |  337 +++++++++++++++++++++++++-------------
>  include/net/vxlan.h              |   33 ++++
>  include/uapi/linux/openvswitch.h |   11 ++
>  net/openvswitch/Kconfig          |    1 +
>  net/openvswitch/Makefile         |    3 +-
>  net/openvswitch/vport-vxlan.c    |  220 +++++++++++++++++++++++++
>  net/openvswitch/vport.c          |    3 +
>  net/openvswitch/vport.h          |    1 +
>  8 files changed, 490 insertions(+), 119 deletions(-)
>  create mode 100644 include/net/vxlan.h
>  create mode 100644 net/openvswitch/vport-vxlan.c

I will merge the first 7 into my vxlan repository and send a pull request.

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

* Re: [PATCH net-next 0/8] openvswitch: Add vxlan tunneling support.
  2013-06-20 15:58 ` Stephen Hemminger
@ 2013-06-20 17:13   ` Stephen Hemminger
  2013-06-20 20:47     ` Pravin Shelar
  2013-06-20 17:14   ` [ovs-dev] " Jesse Gross
  1 sibling, 1 reply; 6+ messages in thread
From: Stephen Hemminger @ 2013-06-20 17:13 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: Pravin B Shelar, netdev, dev

On Thu, 20 Jun 2013 08:58:42 -0700
Stephen Hemminger <stephen@networkplumber.org> wrote:

> On Thu, 20 Jun 2013 00:26:15 -0700
> Pravin B Shelar <pshelar@nicira.com> wrote:
> 
> > First two patches fixes vxlan issues.  Next two patches
> > extends vxlan so that openvswitch can share vxlan udp port
> > with vxlan module. Rest of patches refactors vxlan data
> > plane so that ovs can share that code with vxlan module.
> > Last patch adds vxlan-vport to openvswitch.
> > 
> > Pravin B Shelar (8):
> >   vxlan: Fix error handling while creating device.
> >   vxlan: Fix sparse wornings.
> >   vxlan: Allow multiple recieve handlers.
> >   vxlan: Extend vxlan handlers for openvswitch.
> >   vxlan: Factor out vxlan send api.
> >   vxlan: Improve vxlan headroom calculation.
> >   vxlan: Add tx-vlan offload support.
> >   openvswitch: Add vxlan tunneling support.
> > 
> >  drivers/net/vxlan.c              |  337 +++++++++++++++++++++++++-------------
> >  include/net/vxlan.h              |   33 ++++
> >  include/uapi/linux/openvswitch.h |   11 ++
> >  net/openvswitch/Kconfig          |    1 +
> >  net/openvswitch/Makefile         |    3 +-
> >  net/openvswitch/vport-vxlan.c    |  220 +++++++++++++++++++++++++
> >  net/openvswitch/vport.c          |    3 +
> >  net/openvswitch/vport.h          |    1 +
> >  8 files changed, 490 insertions(+), 119 deletions(-)
> >  create mode 100644 include/net/vxlan.h
> >  create mode 100644 net/openvswitch/vport-vxlan.c
> 
> I will merge the first 7 into my vxlan repository and send a pull request.

The patch "vxlan: Allow multiple recieve handlers." and beyond conflict
with the changes to manage socket in work queue.

Could you rebase them against
  git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/vxlan-next.git

The repo may not be available right now because kernel.org hasn't mirrored
it out yet.

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

* Re: [ovs-dev] [PATCH net-next 0/8] openvswitch: Add vxlan tunneling support.
  2013-06-20 15:58 ` Stephen Hemminger
  2013-06-20 17:13   ` Stephen Hemminger
@ 2013-06-20 17:14   ` Jesse Gross
  1 sibling, 0 replies; 6+ messages in thread
From: Jesse Gross @ 2013-06-20 17:14 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: Pravin B Shelar, dev@openvswitch.org, netdev

On Thu, Jun 20, 2013 at 8:58 AM, Stephen Hemminger
<stephen@networkplumber.org> wrote:
> On Thu, 20 Jun 2013 00:26:15 -0700
> Pravin B Shelar <pshelar@nicira.com> wrote:
>
>> First two patches fixes vxlan issues.  Next two patches
>> extends vxlan so that openvswitch can share vxlan udp port
>> with vxlan module. Rest of patches refactors vxlan data
>> plane so that ovs can share that code with vxlan module.
>> Last patch adds vxlan-vport to openvswitch.
>>
>> Pravin B Shelar (8):
>>   vxlan: Fix error handling while creating device.
>>   vxlan: Fix sparse wornings.
>>   vxlan: Allow multiple recieve handlers.
>>   vxlan: Extend vxlan handlers for openvswitch.
>>   vxlan: Factor out vxlan send api.
>>   vxlan: Improve vxlan headroom calculation.
>>   vxlan: Add tx-vlan offload support.
>>   openvswitch: Add vxlan tunneling support.
>>
>>  drivers/net/vxlan.c              |  337 +++++++++++++++++++++++++-------------
>>  include/net/vxlan.h              |   33 ++++
>>  include/uapi/linux/openvswitch.h |   11 ++
>>  net/openvswitch/Kconfig          |    1 +
>>  net/openvswitch/Makefile         |    3 +-
>>  net/openvswitch/vport-vxlan.c    |  220 +++++++++++++++++++++++++
>>  net/openvswitch/vport.c          |    3 +
>>  net/openvswitch/vport.h          |    1 +
>>  8 files changed, 490 insertions(+), 119 deletions(-)
>>  create mode 100644 include/net/vxlan.h
>>  create mode 100644 net/openvswitch/vport-vxlan.c
>
> I will merge the first 7 into my vxlan repository and send a pull request.

Once you've done that, I'll resync my tree with net-next and take the last one.

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

* Re: [PATCH net-next 0/8] openvswitch: Add vxlan tunneling support.
  2013-06-20 17:13   ` Stephen Hemminger
@ 2013-06-20 20:47     ` Pravin Shelar
  2013-06-22  0:09       ` Stephen Hemminger
  0 siblings, 1 reply; 6+ messages in thread
From: Pravin Shelar @ 2013-06-20 20:47 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: netdev, dev

On Thu, Jun 20, 2013 at 10:13 AM, Stephen Hemminger
<stephen@networkplumber.org> wrote:
> On Thu, 20 Jun 2013 08:58:42 -0700
> Stephen Hemminger <stephen@networkplumber.org> wrote:
>
>> On Thu, 20 Jun 2013 00:26:15 -0700
>> Pravin B Shelar <pshelar@nicira.com> wrote:
>>
>> > First two patches fixes vxlan issues.  Next two patches
>> > extends vxlan so that openvswitch can share vxlan udp port
>> > with vxlan module. Rest of patches refactors vxlan data
>> > plane so that ovs can share that code with vxlan module.
>> > Last patch adds vxlan-vport to openvswitch.
>> >
>> > Pravin B Shelar (8):
>> >   vxlan: Fix error handling while creating device.
>> >   vxlan: Fix sparse wornings.
>> >   vxlan: Allow multiple recieve handlers.
>> >   vxlan: Extend vxlan handlers for openvswitch.
>> >   vxlan: Factor out vxlan send api.
>> >   vxlan: Improve vxlan headroom calculation.
>> >   vxlan: Add tx-vlan offload support.
>> >   openvswitch: Add vxlan tunneling support.
>> >
>> >  drivers/net/vxlan.c              |  337 +++++++++++++++++++++++++-------------
>> >  include/net/vxlan.h              |   33 ++++
>> >  include/uapi/linux/openvswitch.h |   11 ++
>> >  net/openvswitch/Kconfig          |    1 +
>> >  net/openvswitch/Makefile         |    3 +-
>> >  net/openvswitch/vport-vxlan.c    |  220 +++++++++++++++++++++++++
>> >  net/openvswitch/vport.c          |    3 +
>> >  net/openvswitch/vport.h          |    1 +
>> >  8 files changed, 490 insertions(+), 119 deletions(-)
>> >  create mode 100644 include/net/vxlan.h
>> >  create mode 100644 net/openvswitch/vport-vxlan.c
>>
>> I will merge the first 7 into my vxlan repository and send a pull request.
>
> The patch "vxlan: Allow multiple recieve handlers." and beyond conflict
> with the changes to manage socket in work queue.
>
> Could you rebase them against
>   git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/vxlan-next.git
>
> The repo may not be available right now because kernel.org hasn't mirrored
> it out yet.
Can you sync your tree with net-next, it has ovs changes that are
required for ovs-vxlan changes.

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

* Re: [PATCH net-next 0/8] openvswitch: Add vxlan tunneling support.
  2013-06-20 20:47     ` Pravin Shelar
@ 2013-06-22  0:09       ` Stephen Hemminger
  0 siblings, 0 replies; 6+ messages in thread
From: Stephen Hemminger @ 2013-06-22  0:09 UTC (permalink / raw)
  To: Pravin Shelar; +Cc: netdev, dev

On Thu, 20 Jun 2013 13:47:11 -0700
Pravin Shelar <pshelar@nicira.com> wrote:

> On Thu, Jun 20, 2013 at 10:13 AM, Stephen Hemminger
> <stephen@networkplumber.org> wrote:
> > On Thu, 20 Jun 2013 08:58:42 -0700
> > Stephen Hemminger <stephen@networkplumber.org> wrote:
> >
> >> On Thu, 20 Jun 2013 00:26:15 -0700
> >> Pravin B Shelar <pshelar@nicira.com> wrote:
> >>
> >> > First two patches fixes vxlan issues.  Next two patches
> >> > extends vxlan so that openvswitch can share vxlan udp port
> >> > with vxlan module. Rest of patches refactors vxlan data
> >> > plane so that ovs can share that code with vxlan module.
> >> > Last patch adds vxlan-vport to openvswitch.
> >> >
> >> > Pravin B Shelar (8):
> >> >   vxlan: Fix error handling while creating device.
> >> >   vxlan: Fix sparse wornings.
> >> >   vxlan: Allow multiple recieve handlers.
> >> >   vxlan: Extend vxlan handlers for openvswitch.
> >> >   vxlan: Factor out vxlan send api.
> >> >   vxlan: Improve vxlan headroom calculation.
> >> >   vxlan: Add tx-vlan offload support.
> >> >   openvswitch: Add vxlan tunneling support.
> >> >
> >> >  drivers/net/vxlan.c              |  337 +++++++++++++++++++++++++-------------
> >> >  include/net/vxlan.h              |   33 ++++
> >> >  include/uapi/linux/openvswitch.h |   11 ++
> >> >  net/openvswitch/Kconfig          |    1 +
> >> >  net/openvswitch/Makefile         |    3 +-
> >> >  net/openvswitch/vport-vxlan.c    |  220 +++++++++++++++++++++++++
> >> >  net/openvswitch/vport.c          |    3 +
> >> >  net/openvswitch/vport.h          |    1 +
> >> >  8 files changed, 490 insertions(+), 119 deletions(-)
> >> >  create mode 100644 include/net/vxlan.h
> >> >  create mode 100644 net/openvswitch/vport-vxlan.c
> >>
> >> I will merge the first 7 into my vxlan repository and send a pull request.
> >
> > The patch "vxlan: Allow multiple recieve handlers." and beyond conflict
> > with the changes to manage socket in work queue.
> >
> > Could you rebase them against
> >   git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/vxlan-next.git
> >
> > The repo may not be available right now because kernel.org hasn't mirrored
> > it out yet.
> Can you sync your tree with net-next, it has ovs changes that are
> required for ovs-vxlan changes.

Ok vxlan-next tree is rebuilt now as fork off of latest net-next

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

end of thread, other threads:[~2013-06-22  0:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-20  7:26 [PATCH net-next 0/8] openvswitch: Add vxlan tunneling support Pravin B Shelar
2013-06-20 15:58 ` Stephen Hemminger
2013-06-20 17:13   ` Stephen Hemminger
2013-06-20 20:47     ` Pravin Shelar
2013-06-22  0:09       ` Stephen Hemminger
2013-06-20 17:14   ` [ovs-dev] " Jesse Gross

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).