Thread (37 messages) 37 messages, 5 authors, 2019-10-29

Re: [ovs-dev] [PATCH net-next v4 07/10] net: openvswitch: add likely in flow_lookup

From: William Tu <hidden>
Date: 2019-10-18 23:28:14

On Wed, Oct 16, 2019 at 5:55 AM [off-list ref] wrote:
From: Tonghao Zhang <redacted>

The most case *index < ma->max, and flow-mask is not NULL.
We add un/likely for performance.

Signed-off-by: Tonghao Zhang <redacted>
Tested-by: Greg Rose <redacted>
---
LGTM
Acked-by: William Tu <redacted>

quoted hunk ↗ jump to hunk
 net/openvswitch/flow_table.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/openvswitch/flow_table.c b/net/openvswitch/flow_table.c
index 3e3d345..5df5182 100644
--- a/net/openvswitch/flow_table.c
+++ b/net/openvswitch/flow_table.c
@@ -518,7 +518,7 @@ static struct sw_flow *flow_lookup(struct flow_table *tbl,
        struct sw_flow_mask *mask;
        int i;

-       if (*index < ma->max) {
+       if (likely(*index < ma->max)) {
                mask = rcu_dereference_ovsl(ma->masks[*index]);
                if (mask) {
                        flow = masked_flow_lookup(ti, key, mask, n_mask_hit);
@@ -533,7 +533,7 @@ static struct sw_flow *flow_lookup(struct flow_table *tbl,
                        continue;

                mask = rcu_dereference_ovsl(ma->masks[i]);
-               if (!mask)
+               if (unlikely(!mask))
                        break;

                flow = masked_flow_lookup(ti, key, mask, n_mask_hit);
--
1.8.3.1

_______________________________________________
dev mailing list
dev@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help