Re: [ovs-dev] [PATCH v2 python3 0/6] Remove Python 2 support

2019-09-19 Thread Numan Siddique
On Thu, Sep 19, 2019 at 7:29 AM Ben Pfaff wrote: > Python 2 will reach end-of-life at the beginning of 2020, in only > a few months. This series removes support for Python 2 from OVS > and requires Python 3. > > v1->v2: > - Fixed build problems found by travis. > - Added a couple of commits at t

Re: [ovs-dev] [PATCH python3 0/4] Remove Python 2 support

2019-09-19 Thread Numan Siddique
On Wed, Sep 18, 2019 at 11:34 PM Ben Pfaff wrote: > Python 2 will reach end-of-life at the beginning of 2020, in only > a few months. This series removes support for Python 2 from OVS > and requires Python 3. > > This is currently building on Travis: > https://travis-ci.org/blp/ovs-reviews/build

Re: [ovs-dev] [PATCH v2 python3 4/6] Recommend Sphinx from Python 3 in documentation and packaging.

2019-09-19 Thread Numan Siddique
On Thu, Sep 19, 2019 at 7:31 AM Ben Pfaff wrote: > Signed-off-by: Ben Pfaff > --- > .travis.yml | 2 +- > Documentation/intro/install/documentation.rst | 6 +++--- > Documentation/intro/install/rhel.rst | 2 +- > rhel/openvswitch-fedora.spec.in

Re: [ovs-dev] [PATCH v2 1/2 ovn] OVN: Fix container build.

2019-09-19 Thread Numan Siddique
On Fri, Sep 20, 2019 at 2:15 AM wrote: > From: Aliasgar Ginwala > > Current code changes in ovs/ovn split replaced openvswitch with ovn and > caused container patches to break. > Also, as per ff4439d, one should build ovn specifying ovs source. > This patch fixes the same. > > Signed-off-by: Ali

Re: [ovs-dev] [PATCH v10] ovsdb-tool: Convert clustered db to standalone db.

2019-09-19 Thread aginwala
Hi Ben: Just a gentle reminder. Can you please help merge this patch if no additional comments? Got acked-by Han on the same already. On Fri, Aug 30, 2019 at 8:30 AM wrote: > From: Aliasgar Ginwala > > Add support in ovsdb-tool for migrating clustered dbs to standalone dbs. > E.g. usage to mig

Re: [ovs-dev] [PATCH branch-2.8] compat: Fixup ipv6 fragmentation on 4.9.135+ kernels

2019-09-19 Thread 0-day Robot
Bleep bloop. Greetings Gregory Rose, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. checkpatch: WARNING: Unexpected sign-offs from developers who are not authors or co-authors or committers:

Re: [ovs-dev] [PATCH branch-2.7] compat: Fixup ipv6 fragmentation on 4.9.135+ kernels

2019-09-19 Thread 0-day Robot
Bleep bloop. Greetings Gregory Rose, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. checkpatch: WARNING: Unexpected sign-offs from developers who are not authors or co-authors or committers:

Re: [ovs-dev] [PATCH branch-2.6] compat: Fixup ipv6 fragmentation on 4.9.135+ kernels

2019-09-19 Thread 0-day Robot
Bleep bloop. Greetings Gregory Rose, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. checkpatch: WARNING: Unexpected sign-offs from developers who are not authors or co-authors or committers:

Re: [ovs-dev] [Branch 2.9 Patch] compat: Fixup ipv6 fragmentation on 4.9.135+ kernels

2019-09-19 Thread Gregory Rose
On 9/19/2019 10:04 AM, Gregory Rose wrote: On 9/19/2019 4:53 AM, Vishal Deep Ajmera wrote: Upstream commit 648700f76b03 ("inet: frags: use rhashtables...") changed how ipv6 fragmentation is implemented.  This patch was backported to the upstream stable 4.9.x kernel starting at 4.9.135. This

[ovs-dev] [PATCH branch-2.8] compat: Fixup ipv6 fragmentation on 4.9.135+ kernels

2019-09-19 Thread Greg Rose
Upstream commit 648700f76b03 ("inet: frags: use rhashtables...") changed how ipv6 fragmentation is implemented. This patch was backported to the upstream stable 4.9.x kernel starting at 4.9.135. This patch creates the compatibility layer changes required to both compile and also operate correctly

[ovs-dev] [PATCH branch-2.7] compat: Fixup ipv6 fragmentation on 4.9.135+ kernels

2019-09-19 Thread Greg Rose
Upstream commit 648700f76b03 ("inet: frags: use rhashtables...") changed how ipv6 fragmentation is implemented. This patch was backported to the upstream stable 4.9.x kernel starting at 4.9.135. This patch creates the compatibility layer changes required to both compile and also operate correctly

[ovs-dev] [PATCH branch-2.6] compat: Fixup ipv6 fragmentation on 4.9.135+ kernels

2019-09-19 Thread Greg Rose
Upstream commit 648700f76b03 ("inet: frags: use rhashtables...") changed how ipv6 fragmentation is implemented. This patch was backported to the upstream stable 4.9.x kernel starting at 4.9.135. This patch creates the compatibility layer changes required to both compile and also operate correctly

Re: [ovs-dev] [PATCH 1/2 ovn] OVN: Fix container build.

2019-09-19 Thread aginwala
Thanks Numan for review: The issue was create_ovn_dbs.sh needs to be deleted from automake.mk as per new patch. While testing, my env var used master branch vs my custom branch ovn_docker_unix and hence it had create_ovn_dbs.sh and it built fine as per new build scripts. I submitted v2 https://pa

[ovs-dev] [PATCH v2 2/2 ovn] Support starting containers with unix socket

2019-09-19 Thread amginwal
From: Aliasgar Ginwala Signed-off-by: Aliasgar Ginwala --- Documentation/intro/install/general.rst | 14 ++ utilities/docker/start-ovn | 9 + 2 files changed, 23 insertions(+) diff --git a/Documentation/intro/install/general.rst b/Documentation/intro/install/

[ovs-dev] [PATCH v2 1/2 ovn] OVN: Fix container build.

2019-09-19 Thread amginwal
From: Aliasgar Ginwala Current code changes in ovs/ovn split replaced openvswitch with ovn and caused container patches to break. Also, as per ff4439d, one should build ovn specifying ovs source. This patch fixes the same. Signed-off-by: Aliasgar Ginwala --- utilities/automake.mk

Re: [ovs-dev] [PATCH 1/2 ovn] OVN: Fix container build.

2019-09-19 Thread Numan Siddique
On Thu, Sep 12, 2019 at 7:00 AM aginwala wrote: > Signed-off-by: Aliasgar Ginwala > > Hi Ali, This patch is failing when I compile. Can you please take a look. > utilities/ovn-lib.tmp make[1]: *** No rule to make target 'utilities/docker/create_ovn_dbs.sh', needed by 'all-am'. Stop. make[1

Re: [ovs-dev] [Branch 2.9 Patch] compat: Fixup ipv6 fragmentation on 4.9.135+ kernels

2019-09-19 Thread Gregory Rose
On 9/19/2019 4:53 AM, Vishal Deep Ajmera wrote: Upstream commit 648700f76b03 ("inet: frags: use rhashtables...") changed how ipv6 fragmentation is implemented. This patch was backported to the upstream stable 4.9.x kernel starting at 4.9.135. This patch creates the compatibility layer changes

Re: [ovs-dev] [Branch 2.9 Patch] compat: Fixup ipv6 fragmentation on 4.9.135+ kernels

2019-09-19 Thread Vishal Deep Ajmera via dev
> > Upstream commit 648700f76b03 ("inet: frags: use rhashtables...") changed > > how ipv6 fragmentation is implemented. This patch was backported to > > the upstream stable 4.9.x kernel starting at 4.9.135. > > > > This patch creates the compatibility layer changes required to both > > compile and

[ovs-dev] RPS Group ( prototype + carbon fiber + plastic )

2019-09-19 Thread rps_mould4
Dear Dev, I am Rita, Marketing Manager of RPS Group ( Dongguan RPS Mould Co., Ltd ). Please allow me to express my most sincere greetings on behalf of the RPS Group! May I ask do you have Chinese Supplier? Now I will give a short presentation about our RPS Group. Our group has five companies

Re: [ovs-dev] [PATCH v7 0/1] Balance-tcp bond mode optimization

2019-09-19 Thread Vishal Deep Ajmera via dev
> > All unit test passed, plus others I did. > > Tested-by: Matteo Croce > Thank you Matteo for your efforts in testing this patch. Warm Regards, Vishal Ajmera ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ov

Re: [ovs-dev] [PATCH v7 0/1] Balance-tcp bond mode optimization

2019-09-19 Thread Matteo Croce
On Tue, Sep 17, 2019 at 10:57 AM Vishal Deep Ajmera wrote: > > v6->v7: > Fixed issue reported by Matteo for bond/show. > > v5->v6: > Addressed comments from Ilya Maximets. > https://mail.openvswitch.org/pipermail/ovs-dev/2019-August/362001.html > Rebased to OVS master. > > v4->v5: > Support f

Re: [ovs-dev] Regarding TSO using AF_PACKET in OVS

2019-09-19 Thread Ramana Reddy
Hi William, Thanks for your reply. Please find the inline comments. On Fri, Aug 30, 2019 at 9:26 PM William Tu wrote: > Hi Ramana, > > I'm trying to understand your setup. > > On Wed, Aug 28, 2019 at 4:11 AM Ramana Reddy wrote: > > > > Hi Ben, Justin, Jesse and All, > > > > Hope everyone doing

Re: [ovs-dev] [PATCH ovn] Exclude inport and outport symbol tables from conjunction

2019-09-19 Thread Han Zhou
On Wed, Sep 18, 2019 at 2:51 AM Dumitru Ceara wrote: > > On Wed, Sep 18, 2019 at 9:30 AM Dumitru Ceara wrote: > > > > On Tue, Sep 17, 2019 at 6:49 PM Han Zhou wrote: > > > > > > > > > > > > On Tue, Sep 17, 2019 at 5:21 AM Mark Michelson wrote: > > > > > > > > On 9/16/19 12:04 PM, Han Zhou wrote