ovs-l3ping is similar to ovs-test, but the main difference
is that it does not require administrator to open firewall
holes for the XML/RPC control connection. This is achieved
by encapsulating the Control Connection over the L3 tunnel
itself.
This tool is not intended as a replacement for ovs-tes
An upcoming commit will introduce a second user for the new function
actions_output_to_port().
Signed-off-by: Ben Pfaff
---
lib/ofp-util.c| 15 +++
lib/ofp-util.h|3 +++
ofproto/ofproto.c | 15 +++
3 files changed, 21 insertions(+), 12 deletions(-)
diff -
An upcoming commit will introduce a user outside of ofp-util.c.
The change to put_stats_reply__() is larger than strictly necessary to
avoid making really ugly line breaks.
Signed-off-by: Ben Pfaff
---
lib/ofp-util.c | 25 ++---
lib/ofp-util.h |4
2 files changed,
It's easier to make up stats replies if you don't have to accurately
predict the number of bytes that will be necessary.
This immediately allows us to rewrite ofputil_append_flow_stats_reply()
without using NXM_MAX_LEN, which in turn allows us to deleted NXM_MAX_LEN
entirely, which is nice since k
In an upcoming commit I want to print comma-separated, not space-separated,
names for a set of bits.
Signed-off-by: Ben Pfaff
---
lib/ofp-print.c | 20 +++-
1 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/lib/ofp-print.c b/lib/ofp-print.c
index 5103c3e..e6d9151
This function will be useful in an upcoming commit.
Signed-off-by: Ben Pfaff
---
lib/classifier.c | 76 --
lib/classifier.h |3 ++
2 files changed, 48 insertions(+), 31 deletions(-)
diff --git a/lib/classifier.c b/lib/classifier.c
index
An upcoming commit will add support for flow table monitoring by
controllers. One feature of this upcoming support is that a controller's
own changes to the flow table can be abbreviated to a summary, since the
controller presumably know what it has already sent to the switch.
However, the summary
This seems like sensible return value semantics to me, even though the new
operation is also available through rule->pending.
This is a code cleanup only that should not affect behavior.
Signed-off-by: Ben Pfaff
---
ofproto/ofproto.c | 27 ++-
1 files changed, 18 inser
The priority of exact-match flows is ignored only for the OF1.0 flow match
format, never for NXM.
Signed-off-by: Ben Pfaff
---
include/openflow/nicira-ext.h |3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/include/openflow/nicira-ext.h b/include/openflow/nicira-ext.h
in
Signed-off-by: Ben Pfaff
---
utilities/ovs-ofctl.8.in |6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/utilities/ovs-ofctl.8.in b/utilities/ovs-ofctl.8.in
index 9c4ea0c..3ca217b 100644
--- a/utilities/ovs-ofctl.8.in
+++ b/utilities/ovs-ofctl.8.in
@@ -276,7 +276,7 @@ I
This corrects the spelling of the OFOPERATION_* constants.
Signed-off-by: Ben Pfaff
---
ofproto/ofproto.c |6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c
index ce4da9d..5221318 100644
--- a/ofproto/ofproto.c
+++ b/ofproto/ofprot
Thanks!
On Fri, Jun 29, 2012 at 5:20 PM, Ben Pfaff wrote:
> Thanks, I pushed this to master, branch-1.7, branch-1.6, and I'll
> crossport to earlier branches in a while.
>
> On Fri, Jun 29, 2012 at 04:24:22PM -0400, Justin Pettit wrote:
>> Great catch! Thanks, Ben.
>>
>> --Justin
>>
>>
>> On Jun
Thanks, I pushed this to master, branch-1.7, branch-1.6, and I'll
crossport to earlier branches in a while.
On Fri, Jun 29, 2012 at 04:24:22PM -0400, Justin Pettit wrote:
> Great catch! Thanks, Ben.
>
> --Justin
>
>
> On Jun 29, 2012, at 12:28 PM, Ben Pfaff wrote:
>
> > mlockall(2) says:
> >
Ben and I talked a little about the best way to move forward with
this. At this point, none of the possible implementations for
handling TTL are particularly appealing. Recirculation in the kernel
is likely the right solution for at least some of the problems but it
would likely be complicated an
On Fri, Jun 29, 2012 at 09:11:24PM +, Ed Maste wrote:
> This is a trivial implementation of the route-table functionality for
> FreeBSD, as needed by ofproto/ofproto-dpif-sflow.c. It has not yet
> been extensively tested.
>
> Signed-off-by: Ed Maste
> ---
> Note that my primary goal here was
On Fri, Jun 29, 2012 at 09:13:54PM +, Ed Maste wrote:
>
> Signed-off-by: Ed Maste
Thanks, applied.
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
Signed-off-by: Ed Maste
---
lib/vlandev.c |2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/vlandev.c b/lib/vlandev.c
index 77e8e93..ffb8e73 100644
--- a/lib/vlandev.c
+++ b/lib/vlandev.c
@@ -23,13 +23,13 @@
#include
#include "hash.h"
-#include "rtnetlink-link.h"
#
This is a trivial implementation of the route-table functionality for
FreeBSD, as needed by ofproto/ofproto-dpif-sflow.c. It has not yet
been extensively tested.
Signed-off-by: Ed Maste
---
Note that my primary goal here was to get a basic implementation to allow
it to build, so that I can move
> If Ethan tells us his plan, then maybe we can just execute that
> instead of implementing for BSD. Ceteris paribus, I agree that it's
> better to delete code than to add more of it!
My plan is basically to delete the route_table code entirely because
the features it implements aren't particular
Fixed and shared the Patch V2.
On 6/28/12 8:44 PM, "Ben Pfaff" wrote:
>On Thu, Jun 28, 2012 at 07:23:48PM -0700, Arun Sharma wrote:
>> Fixed the remaining programs which does not logs in UTC timestamp
>>format.
>>
>> Signed-off-by: Arun Sharma
>
>In vlog_init(), I think we should drop %z from
Fixed the remaining programs which does not logs in UTC timestamp format.
Also updated NEWS.
Signed-off-by: Arun Sharma
---
NEWS |5 -
lib/table.c |2 +-
lib/vlog.c|4 ++--
ovsdb/ovsdb-tool.c|2 +-
utilities/ovs-ofctl.c |2 +-
5
Great catch! Thanks, Ben.
--Justin
On Jun 29, 2012, at 12:28 PM, Ben Pfaff wrote:
> mlockall(2) says:
>
> Memory locks are not inherited by a child created via fork(2) and are
> automatically removed (unlocked) during an execve(2) or when the
> process terminates.
>
> wh
ovs-ofctl will have --sort[=field]|--rsort[=field] option for 'dump-flows'.
Sort by field if specified else sort by default field 'priority'.
Option "--sort" to sort in ascending order and "--rsort" to sort in descending
order for flow fields. If field values found equal in some entries then
those
mlockall(2) says:
Memory locks are not inherited by a child created via fork(2) and are
automatically removed (unlocked) during an execve(2) or when the
process terminates.
which means that --mlockall was ineffective in combination with --detach
or --monitor or both.
On Fri, Jun 29, 2012 at 09:44:55AM -0400, Ed Maste wrote:
> On 28 June 2012 23:15, Ben Pfaff wrote:
> > The route-table implementation is definitely not portable, but I don't
> > think there's anything in the interface that can't be implemented in
> > FreeBSD. One proper solution, then, would be
On 28 June 2012 23:15, Ben Pfaff wrote:
> The route-table implementation is definitely not portable, but I don't
> think there's anything in the interface that can't be implemented in
> FreeBSD. One proper solution, then, would be to add an implementation
> that works in FreeBSD. I'd certainly t
On Fri, Jun 29, 2012 at 01:41:31PM +0900, Isaku Yamahata wrote:
> ../utilities/ovs-ofctl.c: In function 'do_show':
> ../utilities/ovs-ofctl.c:500:63: warning: 'vconn' is used uninitialized in
> this function [-Wuninitialized]
The following local hack is necessary to make ovs-ofctl work.
At the m
27 matches
Mail list logo