From: Giuseppe Lettieri Date: Mon, 7 Oct 2013 10:34:23 +0000 (+0200) Subject: Merge branch 'mainstream' X-Git-Tag: sliver-openvswitch-2.0.90-1~11 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=b2f2acd543f159ba984a00059892917933612a10;hp=-c;p=sliver-openvswitch.git Merge branch 'mainstream' --- b2f2acd543f159ba984a00059892917933612a10 diff --combined lib/automake.mk index b2d6dc24a,da390aba1..ffaf89ab7 --- a/lib/automake.mk +++ b/lib/automake.mk @@@ -97,8 -97,6 +97,8 @@@ lib_libopenvswitch_a_SOURCES = lib/multipath.c \ lib/multipath.h \ lib/netdev-dummy.c \ + lib/netdev-tunnel.c \ + lib/netdev-pltap.c \ lib/netdev-provider.h \ lib/netdev-vport.c \ lib/netdev-vport.h \ @@@ -201,14 -199,14 +201,16 @@@ lib/svec.h \ lib/table.c \ lib/table.h \ + lib/tag.c \ + lib/tag.h \ lib/timer.c \ lib/timer.h \ lib/timeval.c \ lib/timeval.h \ lib/token-bucket.c \ lib/token-bucket.h \ + lib/tunalloc.c \ + lib/tunalloc.h \ lib/type-props.h \ lib/unaligned.h \ lib/unicode.c \ diff --combined lib/dpif.c index bb95502c6,b66e3bc03..16819113f --- a/lib/dpif.c +++ b/lib/dpif.c @@@ -51,8 -51,6 +51,6 @@@ COVERAGE_DEFINE(dpif_flow_flush) COVERAGE_DEFINE(dpif_flow_get); COVERAGE_DEFINE(dpif_flow_put); COVERAGE_DEFINE(dpif_flow_del); - COVERAGE_DEFINE(dpif_flow_query_list); - COVERAGE_DEFINE(dpif_flow_query_list_n); COVERAGE_DEFINE(dpif_execute); COVERAGE_DEFINE(dpif_purge); @@@ -61,7 -59,6 +59,7 @@@ static const struct dpif_class *base_dp &dpif_linux_class, #endif &dpif_netdev_class, + &dpif_planetlab_class, }; struct registered_dpif_class { @@@ -1352,7 -1349,7 +1350,7 @@@ log_flow_message(const struct dpif *dpi if (error) { ds_put_format(&ds, "(%s) ", ovs_strerror(error)); } - odp_flow_format(key, key_len, mask, mask_len, &ds, true); + odp_flow_format(key, key_len, mask, mask_len, NULL, &ds, true); if (stats) { ds_put_cstr(&ds, ", "); dpif_flow_stats_format(stats, &ds);