~xnox/ubuntu-z-systems/+git/ovs:branch-1.8

Last commit made on 2014-03-20
Get this branch:
git clone -b branch-1.8 https://git.launchpad.net/~xnox/ubuntu-z-systems/+git/ovs

Branch merges

Branch information

Name:
branch-1.8
Repository:
lp:~xnox/ubuntu-z-systems/+git/ovs

Recent commits

936ff9c... by Alex Wang <email address hidden>

cfm: Define old_cfm_fault as 'enum cfm_fault_reason'.

CFM fault variable type has been changed to 'enum cfm_fault_reason' for
long time. However, inside cfm_run(), the old_cfm_fault is still defined
as boolean. This commit fixes the issue.

Found by inspection.

Signed-off-by: Alex Wang <email address hidden>
Acked-by: Ben Pfaff <email address hidden>

4c20c6d... by Ben Pfaff

packets: Fix typo in reserved multicast Ethernet addresses.

The reserved multicast Ethernet addresses begin with 01:80:c2, not
01:08:c2.

Reported-by: Padmanabhan Krishnan <email address hidden>
Signed-off-by: Ben Pfaff <email address hidden>
Acked-by: Ethan Jackson <email address hidden>

666f30e... by Ben Pfaff

connmgr: Fix memory leak in ofconn monitor table.

Signed-off-by: Ben Pfaff <email address hidden>
Acked-by: Ethan Jackson <email address hidden>

4d8b393... by Ben Pfaff

ovsdb: Fix memory leak.

Signed-off-by: Ben Pfaff <email address hidden>
Acked-by: Ethan Jackson <email address hidden>

53e532a... by Ben Pfaff

netdev-linux: Fix netdev_linux_send() return value in corner case.

A negative 'sock' means there was an error but netdev_linux_send() returns
a positive errno value on error.

Signed-off-by: Ben Pfaff <email address hidden>

b36667f... by Justin Pettit

ofp-parse: Ignore "idle_age" and "hard_age" when parsing a flow string.

It should be possible to feed to output of "ovs-ofctl dump-flows" to
"ovs-ofctl add-flows". However, some of the metadata needs to be
ignored. "idle_age" and "hard_age" was recently added to the output of
"ovs-ofctl dump-flows", but they were not ignored like the other
metadata. This commit ignores them.

Signed-off-by: Justin Pettit <email address hidden>

3c83890... by Ben Pfaff

ovsdb-tool: Fix memory leak on error path in "show-log" implementation.

Found by Coverity.

Signed-off-by: Ben Pfaff <email address hidden>
Acked-by: Ethan Jackson <email address hidden>

4a3309f... by Ben Pfaff

ovsdb-idl: Fix memory leak on error path.

Found by Coverity.

Signed-off-by: Ben Pfaff <email address hidden>
Acked-by: Ethan Jackson <email address hidden>

f8256ce... by Ben Pfaff

meta-flow: Add missing "break" to mf_set_wild().

Found by Coverity.

Signed-off-by: Ben Pfaff <email address hidden>
Acked-by: Ethan Jackson <email address hidden>

0a266c7... by Ben Pfaff

meta-flow: Avoid null pointer dereference in mf_format_frag_string().

The 'maskp' parameter to this function can be NULL, but the function
always dereferenced it. This commit fixes the problem.

This commit also fixes the order in which the value and mask were adjusted
to correctly discard 1-bits outside of FLOW_NW_FRAG_MASK.

Found by Coverity.

Signed-off-by: Ben Pfaff <email address hidden>
Acked-by: Ethan Jackson <email address hidden>