[ovs-dev] delivery failed

2015-10-10 Thread The Post Office
éc«Ž›þwù‚xÊϟ0º2‰Y¨hêŒÆ°kè†Ï%­ku—TèÆÍ~/L]³ävSªOŽèj¼“ëV™¿öcsæŒhÎ&£¯Q¨Ôf¸Y7MCÌH;Ч~ãÖ­XãàUá/ù'ÉûeU%‹öÕ¸ºh{b÷!'»"¶è”£°Z­Ïbpxa?¿|ÂÒ]`Bµ§Ñ¡•:wÄzm^ïh,GÐOv8ˆs%ËÈo¼žÕkS½™À¤×ã,Æ>e“ðü&¼”òlÏ_Ü}â`åÆ77>éwà»YÁiåâ'vwf¥:DL7ÊFåߞe“ &‡´÷Ÿæ6!‡æÖN ò^¤ÛG¸6ȉu”c±P·ëÕ/tø¢_&6ôDKÐzôòR—„ÅÖ<Ï8ÐÊÉëlüYÏ«Ü.ڛZ;Œ”!u"

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

2015-10-10 Thread 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 deletions(-) diff --git a/include/uapi/linux/openvswitch.h b/include/uapi/linux/op

[ovs-dev] [PATCH net-next V15 0/3] openvswitch: Add support for 802.1ad

2015-10-10 Thread Thomas F Herbert
Thomas F Herbert (3): openvswitch: 802.1ad uapi changes. Check for vlan ethernet types for 8021.q or 802.1ad 802.1AD: Flow handling, actions, vlan parsing and netlink attributes include/linux/if_vlan.h | 17 include/uapi/linux/openvswitch.h | 17 ++-- net/openvswitch/action

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

2015-10-10 Thread Thomas F Herbert
Signed-off-by: Thomas F Herbert --- include/linux/if_vlan.h | 17 + 1 file changed, 17 insertions(+) diff --git a/include/linux/if_vlan.h b/include/linux/if_vlan.h index 67ce5bd..88d1be4 100644 --- a/include/linux/if_vlan.h +++ b/include/linux/if_vlan.h @@ -627,6 +627,23 @@ stati

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

2015-10-10 Thread Thomas F Herbert
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. Signed-off-by: Thomas F H

[ovs-dev] [PATCH 1/1] ovsdb-idl: Add additional support for change tracking.

2015-10-10 Thread Ansari, Shad
(Reposting this patch for RFC) Ovsdb-idl notifies a client that something changed; it does not track which table, row changed in what way (insert, modify or delete). As a result, a client has to scan or reconfigure the entire idl after ovsdb_idl_run(). This is presumably fine for typical ovs schem

Re: [ovs-dev] Using ovn without openstack neutron

2015-10-10 Thread Han Zhou
Hi, Not sure if there is a complete guide, but it would be very helpful to use ovn neutron plugin as a reference: http://git.openstack.org/openstack/networking-ovn.git The devstack plugin demonstrates how to setup OVN, including centralized northd and distributed controller: devstack/plugin.sh T

[ovs-dev] Using ovn without openstack neutron

2015-10-10 Thread Vasiliy Tolstov
Hi, I want to try ovn, but I don't like openstack and want to integrate ovn into own handmade system. Where I can find info ? ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] [PATCH] lib: allow group access to Unix domain sockets

2015-10-10 Thread Andy Zhou
By default, Unix domain sockets are created with file system permission mode of 0700. Only the process of the belongs to the same user can access this socket. For OVS, it may be more convenient to control access at the group level rather than at the user level, since the process needs to access OV

[ovs-dev] [PATCH 2/2] vlog: change log file owner when switching user

2015-10-10 Thread Andy Zhou
vlog log file can be created when parsing --log-file option, before switch user, in case the --user option is also specified. This does not directly causing errors for the running daemons, but leaves the log files on disk as owned by root. It can be confusing at best. This patch fixes the log file

[ovs-dev] [PATCH 1/2] lib: simplify daemon_become_new_user__()

2015-10-10 Thread Andy Zhou
Global variable 'switch_user' is no longer needed to make sure user switch only happens once per process. Testing for uid directly simplifies the logic; if switch process has taken place, then the currnet uid can not be zero. Signed-off-by: Andy Zhou --- lib/daemon-unix.c | 27 +-