[ovs-dev] [PATCH] ofproto: restore file mode to 644.

2016-09-21 Thread antonio . fischetti
Just restored file mode from 755 to 644. Signed-off-by: Antonio Fischetti --- ofproto/ofproto.c | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 ofproto/ofproto.c diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c old mode 100755 new mode 100644 -- 2.4

[ovs-dev] [PATCH] dpcls_lookup: added comments.

2016-08-05 Thread antonio . fischetti
This patch adds some comments to the dpcls_lookup() funtion, which is one of the most important places where the Userspace wildcard matching happens. The purpose is to give some more explanations on its design and also on how it works. Signed-off-by: Antonio Fischetti --- lib/dpif-netdev.c | 40

[ovs-dev] [PATCH] odp-util: Fix build warning on flags_mask.

2016-04-19 Thread antonio . fischetti
Fix build warning: 'flags_mask' may be used uninitialized. Signed-off-by: Antonio Fischetti --- lib/odp-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/odp-util.c b/lib/odp-util.c index b4689cc..10fb6c2 100644 --- a/lib/odp-util.c +++ b/lib/odp-util.c

[ovs-dev] [PATCH RFC] dpif-netdev: ACL+dpcls for Wildcard matching.

2016-04-13 Thread antonio . fischetti
p and will run all the time. More details in comments inside dpacl_build() and acl_builder_thread() functions. Signed-off-by: Antonio Fischetti --- lib/dpif-netdev.c | 634 +- 1 file changed, 633 insertions(+), 1 deletion(-) diff --git