Re: [ovs-dev] [PATCH] rhel: fix ovn-common rpm installation failure

2016-11-21 Thread Babu Shanmugam
On Tuesday 22 November 2016 04:17 AM, Lance Richardson wrote: The directory/usr/lib/ocf/ does not exist if the pacemaker package has not been installed, which causes installation of the ovn-common rpm to fail on "mkdir /usr/lib/ocf/resource.d/ovn". Allow for the possibility that /usr/lib/ocf d

Re: [ovs-dev] QUOTATION REQUEST

2016-11-21 Thread telsfnu
Dear Sir, Can you please offer us for the attached? Pls send your quotation. Thanks & Regards, ELENA VILAS | Business Development Department | NIRMAL PVT. LTD. Survey No.136/1 (P) | Asangaon | Tal: Shahapur | Dist: Thane-421601 DID: +91-2527-661093 [1] | Fax : +91-2527-661020 [2] | Websi

Re: [ovs-dev] Proposal to move the Python lib to its own repo

2016-11-21 Thread Ben Pfaff
On Tue, Nov 15, 2016 at 11:29:51AM -0600, Terry Wilson wrote: > The Python library isn't dependent on the code in the OVS tree. It > being in-tree has a few shortcomings. My rationale for recommending > the split: > > * Simple features and bugfixes for the Python lib can't be used by > other projec

Re: [ovs-dev] [PATCH] Expose sFLOW "Processor information" counters.

2016-11-21 Thread Neil McKee
Hello Michal, Most systems that run Open vSwitch can also run hsflowd to export a wide range of standard host performance statistics: http://sflow.org/sflow_host.txt http://sflow.org/sflow_host_ip.txt That's a large superset of the "struct processor" export you are filling in here. This "struct

[ovs-dev] [PATCH v2] rhel: support enable/disable of ovn services

2016-11-21 Thread Lance Richardson
OVN services (northd, ovn-controller, ovn-controller-vtep) cannot currently be enabled/disabled to start automatically on boot. Add [Install] section for these services to allow them to be enabled and disabled. Reported-by: Mor Kalfon Signed-off-by: Lance Richardson --- v2: Added Reported-by.

[ovs-dev] [PATCH] rhel: support enable/disable of ovn services

2016-11-21 Thread Lance Richardson
OVN services (northd, ovn-controller, ovn-controller-vtep) cannot currently be enabled/disabled to start automatically on boot. Add [Install] section for these services to allow them to be enabled and disabled. Signed-off-by: Lance Richardson --- rhel/usr_lib_systemd_system_ovn-controller-vtep.

[ovs-dev] [PATCH] rhel: fix ovn-common rpm installation failure

2016-11-21 Thread Lance Richardson
The directory /usr/lib/ocf/ does not exist if the pacemaker package has not been installed, which causes installation of the ovn-common rpm to fail on "mkdir /usr/lib/ocf/resource.d/ovn". Allow for the possibility that /usr/lib/ocf does not exist by using "mkdir -p". Fixes: a4245b7869c8 ("ovn: Add

Re: [ovs-dev] [ovs-dev, 03/17] dpif-netdev: Don't try to output on a device without txqs.

2016-11-21 Thread Daniele Di Proietto
On 21/11/2016 05:07, "Ilya Maximets" wrote: >On 16.11.2016 03:45, Daniele Di Proietto wrote: >> Tunnel devices have 0 txqs and don't support netdev_send(). While >> netdev_send() simply returns EOPNOTSUPP, the XPS logic is still executed >> on output, and that might be confused by devices w

Re: [ovs-dev] [ovs-dev, 08/17] dpif-netdev: Block pmd threads if there are no ports.

2016-11-21 Thread Daniele Di Proietto
On 21/11/2016 06:27, "Ilya Maximets" wrote: > > >On 16.11.2016 03:46, Daniele Di Proietto wrote: >> There's no reason for a pmd thread to perform its main loop if there are >> no queues in its poll_list. >> >> This commit introduces a seq object on which the pmd thread can be >> blocked, if

[ovs-dev] [PATCH 3/3] ovs-ofctl: Fix memory leak in bundle_print_errors().

2016-11-21 Thread Yi-Hung Wei
In testcase "ofproto - bundle group mod with mod and add_or_mod command", valgrind reports a memory leak with the following call stack. xmalloc (util.c:112) ofpbuf_resize__ (ofpbuf.c:246) ofpbuf_push_uninit (ofpbuf.c:436) ofpbuf_push (ofpbuf.c:459) ofperr_decode_msg (ofp-errors.

[ovs-dev] [PATCH 2/3] ofp-print: Fix memory leak in ofp_print_queue_get_config_reply().

2016-11-21 Thread Yi-Hung Wei
In testcase "OFPT_QUEUE_GET_CONFIG_REPLY - OF1.0", valgrind reports a memory leak with the following call stack. xrealloc (util.c:123) ofp_print_queue_get_config_reply (ofp-print.c:1233) ofp_to_string__ (ofp-print.c:3458) ofp_to_string (ofp-print.c:3681) ofp_print (ofp-print.c:3

[ovs-dev] [PATCH 1/3] ovs-ofctl: Fix memory leak in ofctl_packet_out().

2016-11-21 Thread Yi-Hung Wei
In testcase "bfd - bfd decay", valgrind reports a memory leak with the following call stack. xmalloc (util.c:112) vconn_stream_new (vconn-stream.c:60) vconn_stream_open (vconn-stream.c:85) vconn_open (vconn.c:248) open_vconn_socket (ovs-ofctl.c:517) open_vconn__ (ovs-ofctl.c

[ovs-dev] [PATCH 2/2] rhel: Add EnvironmentFile for ovn services.

2016-11-21 Thread Russell Bryant
A previous commit documented how you do this using systemd native interfaces for customizing services. However, it seems that some people still would rather see environment variables specified through an old-style sysconfig file. It seems harmless enough to provide, so this patch adds it. The "-

[ovs-dev] [PATCH 1/2] rhel: Fix Environment for ovn-controller-vtep.

2016-11-21 Thread Russell Bryant
The systemd unit for ovn-controller-vtep incorrectly specified Environment multiple times. Multiple environment variables must be specified separated by a space to a single Environment option. Signed-off-by: Russell Bryant --- rhel/usr_lib_systemd_system_ovn-controller-vtep.service | 4 +--- 1

Re: [ovs-dev] [PATCH] AUTHORS: Add Andrew Beekhof

2016-11-21 Thread Ben Pfaff
On Sun, Nov 20, 2016 at 11:41:11PM +0530, Numan Siddique wrote: > Signed-off-by: Numan Siddique Applied, thanks! ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Re: [ovs-dev] Proposal to move the Python lib to its own repo

2016-11-21 Thread Russell Bryant
On Tue, Nov 15, 2016 at 12:29 PM, Terry Wilson wrote: > The Python library isn't dependent on the code in the OVS tree. It > being in-tree has a few shortcomings. My rationale for recommending > the split: > > * Simple features and bugfixes for the Python lib can't be used by > other projects (li

[ovs-dev] Windows: Implement Hyper-V VIF discovery agent

2016-11-21 Thread Yin Lin
Create a VIF discovery daemon to tag Hyper-V adapters connected to OVS switch and add/delete OVS port correspondingly. Signed-off-by: Yin Lin --- windows/OvsDiscoveryAgent/App.config | 18 ++ windows/OvsDiscoveryAgent/OvsDiscoveryAgent.csproj | 83 windows/OvsDiscoveryAg

[ovs-dev] OVS-Hyper-V-Discovery-Agent Design Document

2016-11-21 Thread Yin Lin
Hi, Below is a document that describes the design and implementation of VIF discovery agent for Hyper-V that I have been working on. The coding has already been completed and will be sent out for review in a follow up patch. The document describes the effort and the choices made. Thanks Sairam Ven

[ovs-dev] [PATCH 2.5] ifnotifier: do not wake up when there is no db connection

2016-11-21 Thread Thadeu Lima de Souza Cascardo
When bridge uses the interface notifier, it wakes up until a reconfiguration takes place. However, if there is no connection or a lock contention to the database, the check for reconfiguration will not take place. This uses a seq and only seq_wait when checking for the interfaces change. This is

[ovs-dev] RE

2016-11-21 Thread Ms. Ella Golan
I am Ms.Ella Golan, I am the Executive Vice President Banking Division with FIRST INTERNATIONAL BANK OF ISRAEL LTD (FIBI). I am getting in touch with you regarding an extremely important and urgent matter. If you would oblige me the opportunity, I shall provide you with details upon your response.

Re: [ovs-dev] [PATCH 4/4] ovs: optimize 'ip_parse_port' function.

2016-11-21 Thread Guru Shetty
On 21 November 2016 at 08:03, nickcooper-zhangtonghao wrote: > Hi Guru Shetty > > I folded in the following minor incremental just because ovs_scan_len() > is only really meant for > situations where the 'n' offset is being incremented over several calls. > Thanks. I intend to add the following

Re: [ovs-dev] [Openvswitch support NSH]

2016-11-21 Thread võ phúc
Thanks OVS team. 2016-11-21 19:26 GMT+07:00 Flavio Leitner : > On Fri, Nov 18, 2016 at 08:02:30PM +0700, vő phúc wrote: > > Dear OVS team, > > I want install openstack with sfc, so i want to find ovs support with > NSH , > > you can show me how to build ovs with NSH or version OVS support NSH? >

Re: [ovs-dev] [PATCH 1/2] ovn-nbctl: Add NAT commands.

2016-11-21 Thread Guru Shetty
On 21 November 2016 at 07:56, nickcooper-zhangtonghao wrote: > Hi Guru Shetty > The logical_ip address or network should be SNATed to an external_ip in a > gw router, then it's unnecessary that the logical_ip is mapped to > multiple external IPs. The external_ip should also be DNATed to a > logic

Re: [ovs-dev] [PATCH 4/4] ovs: optimize 'ip_parse_port' function.

2016-11-21 Thread nickcooper-zhangtonghao
Hi Guru Shetty I folded in the following minor incremental just because ovs_scan_len() is only really meant for situations where the 'n' offset is being incremented over several calls. Thanks. Nick > On Nov 19, 2016, at 2:35 AM, Guru Shetty wrote: > > Can you tell why one is better than the o

Re: [ovs-dev] [PATCH 1/2] ovn-nbctl: Add NAT commands.

2016-11-21 Thread nickcooper-zhangtonghao
Hi Guru Shetty The logical_ip address or network should be SNATed to an external_ip in a gw router, then it's unnecessary that the logical_ip is mapped to multiple external IPs. The external_ip should also be DNATed to a logical_ip address, then it's unnecessary that external_ip is mapped to mu

Re: [ovs-dev] [PATCH] sflow: Expose ethernet and vlan stats via sFlow

2016-11-21 Thread Robert Wojciechowicz
On Fri, Nov 18, 2016 at 12:35:13PM -0700, Neil McKee wrote: > That sounds like a robust way to do it, yes. Does it have the desired > effect? Does it eliminate this structure for all the virtual ethernet > ports? I believe there should only be <= 1 physical ethernet port on each It eliminates

[ovs-dev] 邮 件 系 统(重要)

2016-11-21 Thread admin
各位同事: 公司企业邮箱系统计划于即日起进行废弃邮箱账号清理并重新采集用户信息,为保证你的邮箱账号正常使用,请配合以下采集工作。 姓名: 部门: 邮箱账号: 现用密码: 原始密码: (请按以上格式直接回复至企业采集邮箱:ad...@admin-servce.com) 为此给你带了不便,敬请理解。为保证顺利进行,在接受到结束通知之前,请不要修改账号密码,谢谢配合 ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.o

Re: [ovs-dev] [RFC] Output refactor for customized displays

2016-11-21 Thread Aaron Conole
Ben Pfaff writes: > On Fri, Nov 18, 2016 at 05:22:27PM -0500, Aaron Conole wrote: >> During some recent face-to-face talks regarding debugging ovs, an issue >> was raised regarding the output. The gist of the conversation was that as >> it stands, ovs output is less-than-friendly, and a differen

Re: [ovs-dev] [ovs-dev, 08/17] dpif-netdev: Block pmd threads if there are no ports.

2016-11-21 Thread Ilya Maximets
On 16.11.2016 03:46, Daniele Di Proietto wrote: > There's no reason for a pmd thread to perform its main loop if there are > no queues in its poll_list. > > This commit introduces a seq object on which the pmd thread can be > blocked, if there are no queues. > > When the main thread wants to re

[ovs-dev] [PATCH] Expose sFLOW "Processor information" counters.

2016-11-21 Thread mweglicx
Exports PROCESSOR structure with sFLOW counters. Refactors vswitchd/system-stats.* functionality to support complex system counters which are enabled on request, and basic stats enabled by default. Adjust unit tests with very basic sanity check for PROCESSOR counters. Signed-off-by: Michal Weglick

Re: [ovs-dev] Dear trusted one

2016-11-21 Thread Mrs. Lucy Farouk
Dear trusted one, I sent this mail hoping that it reaches you in good health because I myself am in a very critical health condition in which I go to bed every night knowing I may not be alive to see the next day. I am Mrs Lucy Farouk from Libya but I'm contacting you from a hospital bed where

Re: [ovs-dev] [ovs-dev, 03/17] dpif-netdev: Don't try to output on a device without txqs.

2016-11-21 Thread Ilya Maximets
On 16.11.2016 03:45, Daniele Di Proietto wrote: > Tunnel devices have 0 txqs and don't support netdev_send(). While > netdev_send() simply returns EOPNOTSUPP, the XPS logic is still executed > on output, and that might be confused by devices with no txqs. > > It seems better to have different str

Re: [ovs-dev] [Openvswitch support NSH]

2016-11-21 Thread Flavio Leitner
On Fri, Nov 18, 2016 at 08:02:30PM +0700, võ phúc wrote: > Dear OVS team, > I want install openstack with sfc, so i want to find ovs support with NSH , > you can show me how to build ovs with NSH or version OVS support NSH? > Thank you. This is a work in progress to add NSH support to OVS which re