[ovs-dev] Delivery reports about your e-mail

2015-10-24 Thread Returned mail
This message was undeliverable due to the following reason(s): Your message could not be delivered because the destination computer was unreachable within the allowed queue period. The amount of time a message is queued before it is returned depends on local configura- tion parameters. Most

[ovs-dev] [PATCH 1/3] datapath-windows: Move OvsAllocateNBLFromBuffer to BufferMgmt

2015-10-24 Thread Sairam Venugopal
Move the functionality around creating an NBL from Buffer to Buffermanagement. This function will be used for converting the buffer from user-space to NBL and also by STT - reassembly logic. Signed-off-by: Sairam Venugopal --- datapath-windows/ovsext/BufferMgmt.c | 46

[ovs-dev] [PATCH 3/3] datapath-windows: STT - Enable support for TCP Segmentation offloads

2015-10-24 Thread Sairam Venugopal
Add support to STT - Encap and Decap functions to reassemble the packet fragments. Also add support to offload the packet to NDIS. Signed-off-by: Sairam Venugopal --- datapath-windows/ovsext/Actions.c | 40 ++-- datapath-windows/ovsext/Stt.c | 407

[ovs-dev] [PATCH 2/3] datapath-windows: STT - Add support for TCP Segmentation Offload

2015-10-24 Thread Sairam Venugopal
Create and initialize the background thread and buffer that assists in defragmenting and completing a TSO packet. Signed-off-by: Sairam Venugopal --- datapath-windows/ovsext/Stt.c| 128 ++- datapath-windows/ovsext/Stt.h| 33

Re: [ovs-dev] [Debian-non-root v2 4/4] Debian: start daemons as ovs(non-root) user

2015-10-24 Thread Ben Pfaff
On Fri, Oct 09, 2015 at 05:13:24PM -0700, Andy Zhou wrote: > Changes to Debian packaging scripts to create the ovs user and group. > Fix the permissions of ovs created files and directories so that > they are accessible by users belong to the ovs group. > Start daemons as the ovs user. > >

Re: [ovs-dev] [PATCH 1/4] ovn : Setup a controller for br-int

2015-10-24 Thread Ben Pfaff
On Fri, Oct 23, 2015 at 01:12:50PM +0530, Babu Shanmugam wrote: > This patch configures the ovs records for a new controller to br-int > and an endpoint for the new controller > > Signed-off-by: Babu Shanmugam Doesn't it work to just start a second connection to the

Re: [ovs-dev] [Debian-non-root v2 2/4] ovs-ctl: Remove hard coded root user and group

2015-10-24 Thread Ben Pfaff
On Fri, Oct 09, 2015 at 05:13:22PM -0700, Andy Zhou wrote: > Replace hard coded root user and group with OVS_USER and OVS_GROUP. > > Signed-off-by: Andy Zhou > Acked-by: Ansis Atteka Acked-by: Ben Pfaff

[ovs-dev] [PATCH 0/3] STT - Enable support for TCP Segmentation offload

2015-10-24 Thread Sairam Venugopal
The following patches add support for TCP Segmentation offloads in STT for Hyper-V. 1/3 - Move OvsAllocateNBLFromBuffer function from User.c to BufferMgmt.c 2/3 - Add the thread and buffer to support STT fragment reassembly 3/3 - Enable support in STT - encap and decap functions to reassemble a

Re: [ovs-dev] [Debian-non-root v2 3/4] ovs-ctl: add --no-run-as-root option

2015-10-24 Thread Ben Pfaff
On Fri, Oct 09, 2015 at 05:13:23PM -0700, Andy Zhou wrote: > Add option to ovs-ctl script to specify whether to start the daemons as > root user or ovs user. The default is 'run-as-root', which preserves > the script's current behavior. > > Signed-off-by: Andy Zhou I think

Re: [ovs-dev] [Debian-non-root v2 1/4] Debian: require libcap-ng library for building packages

2015-10-24 Thread Ben Pfaff
On Fri, Oct 09, 2015 at 05:13:21PM -0700, Andy Zhou wrote: > libcap-ng is going to be required to build Debian packages. Daemons > will run as the ovs user and group, instead of root, to improve > security. > > Signed-off-by: Andy Zhou > Acked-by: Ansis Atteka