[ovs-dev] (no subject)

2016-09-07 Thread LAGOLI WARLORD
MY BELOVED ONE, PLEASE I NEED YOU TO HELP ME. I WILL GIVE YOU DETAILS WHEN I GET RESPONSE FROM YOU. SINCERELY, LAGOLI WARLORD. ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] Mail System Error - Returned Mail

2016-09-07 Thread deleg_ribeiraopreto
The message was undeliverable due to the following reason: Your message could not be delivered because the destination server was not reachable within the allowed queue period. The amount of time a message is queued before it is returned depends on local configura- tion parameters. Most likely

Re: [ovs-dev] NSH Option 2 implementation

2016-09-07 Thread Jan Scheurich
Thanks Ben, I understood the conclusion of the earlier NSH discussions around November last year (e.g. http://openvswitch.org/pipermail/dev/2015-November/061933.html and http://openvswitch.org/pipermail/dev/2015-November/061921.html) was to separate NSH encapsulation from the underlying

Re: [ovs-dev] bug fix for miimon issue with ixgbe driver that half support mii

2016-09-07 Thread David Hill
Sorry for the delay. We got the patched merged in a test kernel and we'll test it asap. Thank you, Dave On 08/31/2016 03:46 PM, Jeff Kirsher wrote: On Tue, 2016-08-30 at 17:35 -0400, David Hill wrote: Hello sir, I do not understand either but that's what's happening. It's a fiber

[ovs-dev] [Backport Request] For branch-2.5, backport rhel-systemd integration

2016-09-07 Thread Aaron Conole
Greetings all, I'd like to request a backport to branch 2.5 of the following commits: c416eaf8c247225f0ebeb22b6ca5c473e96a53d2 ("ovs-ctl: Remove code for upgrading...") 7fc28c50c0128a0c72853f8f243fd5045bcb9917 ("ovs-ctl: Allow selective start for...")

[ovs-dev] Asistentes - Habilidades y Competencias

2016-09-07 Thread Como planificar adecuadamente el tiempo
Capacidad y entrega para un máximo rendimiento profesional Habilidades y Competencias para las Asistentes Administrativas y de Finanzas Ciudad de México / 30 de Septiembre 9:00 a 20:00 hrs - Imparte: Psic. Dolores Romero Mora La labor de una asistente en la empresa es fundamental para el

[ovs-dev] [PATCH] system-traffic: Add FTP NAT test without seqadj.

2016-09-07 Thread Joe Stringer
The existing FTP with NAT tests all perform NATing from an IP like 10.1.1.1 -> 10.1.1.240, which requires adjusting the length of FTP control messages as they pass through the connection tracker. Occasionally this is a source of kernel bugs, so it is useful to have a regular FTP NAT test between

[ovs-dev] json: Serialize strings using a lookup table

2016-09-07 Thread Rodriguez Betancourt, Esteban
The existing implementation uses a switch with many conditions, that when compiled is translated to a not optimal series of conditional jumps. With a lookup table the generated code has less conditional jumps, that should translate in improving the CPU ability to predict the jumps. Performance

Re: [ovs-dev] [PATCH] system-traffic: Add FTP NAT test without seqadj.

2016-09-07 Thread Jarno Rajahalme
Assuming the test is otherwise identical, Acked-by: Jarno Rajahalme > On Sep 7, 2016, at 2:07 PM, Joe Stringer wrote: > > The existing FTP with NAT tests all perform NATing from an IP like > 10.1.1.1 -> 10.1.1.240, which requires adjusting the length of FTP >

Re: [ovs-dev] [PATCH] system-traffic: Add FTP NAT test without seqadj.

2016-09-07 Thread Joe Stringer
On 7 September 2016 at 14:23, Jarno Rajahalme wrote: > Assuming the test is otherwise identical, > > Acked-by: Jarno Rajahalme Yup, it's just 's/10.1.1.240/10.1.1.9/' and 's/0x0a0101f0\/0xfff0/0x0a010109/0x/' plus a test rename. Thanks, applied to

Re: [ovs-dev] [PATCH v2 1/8] packets: add compose_nd_ra to compose Router Advertisement packet

2016-09-07 Thread Justin Pettit
> On Sep 2, 2016, at 10:08 PM, Zongkai LI wrote: > > This patch introduces methods to compose a Router Advertisement (RA) packet, > introduces flags for RA. RA packet composed structures against specification > in RFC4861. > > Caller can use compse_nd_ra to compose a basic

[ovs-dev] [PATCH net-next v22 3/3] openvswitch: 802.1AD Flow handling, actions, vlan parsing, netlink attributes

2016-09-07 Thread Eric Garver
Add support for 802.1ad including the ability to push and pop double tagged vlans. Add support for 802.1ad to netlink parsing and flow conversion. Uses double nested encap attributes to represent double tagged vlan. Inner TPID encoded along with ctci in nested attributes. This is based on Thomas

[ovs-dev] [PATCH net-next v22 0/3] openvswitch: add 802.1ad support

2016-09-07 Thread Eric Garver
This series adds 802.1ad support to openvswitch. It is a continuation of the work originally started by Thomas F Herbert - hence the large rev number. The extra VLAN is implemented by using an additional level of the OVS_KEY_ATTR_ENCAP netlink attribute. In OVS flow speak, this looks like

[ovs-dev] [PATCH net-next v22 2/3] vlan: Check for vlan ethernet types for 8021.q or 802.1ad

2016-09-07 Thread Eric Garver
This is to simplify using double tagged vlans. This function allows all valid vlan ethertypes to be checked in a single function call. Also replace some instances that check for both ETH_P_8021Q and ETH_P_8021AD. Patch based on one originally by Thomas F Herbert. Signed-off-by: Thomas F Herbert

[ovs-dev] [PATCH] ovn-controller: Fix group_id allocation.

2016-09-07 Thread Gurucharan Shetty
A bitmap in 'struct group_table' is used to track all the allocated group_ids. For every run of logical flows action parsing, we add 'group_info' structure to a hmap called 'desired_groups'. The group_id assigned to this group_info either comes from an already installed 'existing groups' or a new

Re: [ovs-dev] [PATCH v2 2/8] lib: rename ovs_nd_opt to ovs_nd_lla_opt

2016-09-07 Thread Justin Pettit
> On Sep 2, 2016, at 10:08 PM, Zongkai LI wrote: > > Since ovs_nd_mtu_opt and ovs_nd_prefix_opt is introducted, rename > ovs_nd_opt to ovs_nd_lla_opt to specify it's Source/Target Link-layer > Address Option. > > v1 -> v2 > rebased, separete ovs_nd_opt rename to this patch.

[ovs-dev] [PATCH] system-traffic: Collapse FTP NAT tests.

2016-09-07 Thread Joe Stringer
Previously we had the following tests: * FTP with NAT * FTP with NAT (seq-adj) * FTP with NAT 2 Tests 1 and 2 share everything, except use different IP addresses. Test 3 has a different flow table, but shares the topology with 1 and 2. This commit creates macros: * CHECK_FTP_NAT(title, ip,

Re: [ovs-dev] [PATCH] datapath: Use pre-routing hook for conntrack.

2016-09-07 Thread Joe Stringer
On 1 September 2016 at 18:08, Jesse Gross wrote: > On Thu, Sep 1, 2016 at 5:01 PM, Joe Stringer wrote: >> The upstream code uses NF_INET_PRE_ROUTING hook for the nf_conntrack_in() >> call, which does deeper (eg l4proto) validation. It was previously >> thought

Re: [ovs-dev] [PATCH net-next v22 3/3] openvswitch: 802.1AD Flow handling, actions, vlan parsing, netlink attributes

2016-09-07 Thread pravin shelar
On Wed, Sep 7, 2016 at 9:56 AM, Eric Garver wrote: > Add support for 802.1ad including the ability to push and pop double > tagged vlans. Add support for 802.1ad to netlink parsing and flow > conversion. Uses double nested encap attributes to represent double > tagged vlan. Inner

Re: [ovs-dev] [PATCH net-next v22 2/3] vlan: Check for vlan ethernet types for 8021.q or 802.1ad

2016-09-07 Thread pravin shelar
On Wed, Sep 7, 2016 at 9:56 AM, Eric Garver wrote: > This is to simplify using double tagged vlans. This function allows all > valid vlan ethertypes to be checked in a single function call. > Also replace some instances that check for both ETH_P_8021Q and > ETH_P_8021AD. > > Patch

Re: [ovs-dev] [PATCH v2 4/8] flow: update is_nd for all ND msg types

2016-09-07 Thread Justin Pettit
> On Sep 2, 2016, at 10:09 PM, Zongkai LI wrote: > > This patch updates method is_nd to let type ND_ROUTER_SOLICIT, > ND_ROUTER_ADVERT, ND_REDIRECT can be recoginzed. > And introduces method is_nd_neighbor for inherit current is_nd behavior. > > v1 -> v2 > rebased,

Re: [ovs-dev] [PATCH v2 3/8] ovn: extend expr symbols for ND

2016-09-07 Thread Zong Kai Li
On Thu, Sep 8, 2016 at 9:13 AM, Justin Pettit wrote: > >> On Sep 2, 2016, at 10:09 PM, Zongkai LI wrote: >> >> This patch updates symbols in logical-fields for ND, such as "nd", >> "nd.target", "nd.sll", "nd.tll", to describe more clear about "icmp6.type" >>

Re: [ovs-dev] [PATCH v2 4/8] flow: update is_nd for all ND msg types

2016-09-07 Thread Zong Kai Li
On Thu, Sep 8, 2016 at 9:39 AM, Justin Pettit wrote: > >> On Sep 2, 2016, at 10:09 PM, Zongkai LI wrote: >> >> This patch updates method is_nd to let type ND_ROUTER_SOLICIT, >> ND_ROUTER_ADVERT, ND_REDIRECT can be recoginzed. >> And introduces method

Re: [ovs-dev] [PATCH v2 3/8] ovn: extend expr symbols for ND

2016-09-07 Thread Justin Pettit
> On Sep 2, 2016, at 10:09 PM, Zongkai LI wrote: > > This patch updates symbols in logical-fields for ND, such as "nd", > "nd.target", "nd.sll", "nd.tll", to describe more clear about "icmp6.type" > predicate. > It adds new symbols: > - "nd_rs" stands for Router Solicitation

Re: [ovs-dev] [PATCH net-next v22 1/3] openvswitch: 802.1ad uapi changes.

2016-09-07 Thread pravin shelar
On Wed, Sep 7, 2016 at 9:56 AM, Eric Garver wrote: > From: Thomas F Herbert > > openvswitch: Add support for 8021.AD > > Change the description of the VLAN tpid field. > > Signed-off-by: Thomas F Herbert Acked-by: Pravin B

[ovs-dev] [PATCH net-next v22 1/3] openvswitch: 802.1ad uapi changes.

2016-09-07 Thread Eric Garver
From: Thomas F Herbert openvswitch: Add support for 8021.AD Change the description of the VLAN tpid field. Signed-off-by: Thomas F Herbert --- include/uapi/linux/openvswitch.h | 17 + 1 file changed, 9 insertions(+), 8

[ovs-dev] [PATCH v13 0/2] QOS updates with DSCP support

2016-09-07 Thread bschanmu
v12 -> v13: - Few nit and test case changes suggested by Mickey Spiegel Babu Shanmugam (2): Check and allocate free qdisc queue id for ports with qos parameters DSCP marking on packets include/ovn/actions.h | 17 +++- ovn/controller/binding.c| 220

[ovs-dev] [PATCH v13 0/2] QOS updates with DSCP support

2016-09-07 Thread bschanmu
v12 -> v13: - Few nit and test case changes suggested by Mickey Spiegel Babu Shanmugam (2): Check and allocate free qdisc queue id for ports with qos parameters DSCP marking on packets include/ovn/actions.h | 17 +++- ovn/controller/binding.c| 220

[ovs-dev] Seeking Project

2016-09-07 Thread vipul rai
Hello Folks: We are the Masters Student( Computer Engineering) at San Jose State University going to start our master project. We want to contribute to the open source community as a part of our master project. We all have prior experience in the field of computer networking and software

[ovs-dev] [PATCH v13 1/2] Check and allocate free qdisc queue id for ports with qos parameters

2016-09-07 Thread bschanmu
From: Babu Shanmugam ovn-northd processes the list of Port_Bindings and hashes the list of queues per chassis. When it finds a port with qos_parameters and without a queue_id, it allocates a free queue for the chassis that this port belongs. The queue_id information is

[ovs-dev] [PATCH v13 2/2] DSCP marking on packets

2016-09-07 Thread bschanmu
From: Babu Shanmugam This patch adds support for marking qos on IP packets based on arbitrary match criteria for a logical switch. Signed-off-by: Babu Shanmugam Suggested-by: Mickey Spiegel Acked-by: Mickey Spiegel