From: xiangxia.m.yue@gmail.com
To: pshelar@ovn.org, gvrose8192@gmail.com
Cc: netdev@vger.kernel.org, Tonghao Zhang <xiangxia.m.yue@gmail.com>
Subject: [PATCH net-next 6/7] net: openvswitch: simplify the flow_hash
Date: Fri, 20 Sep 2019 00:54:52 +0800 [thread overview]
Message-ID: <1568912093-68535-7-git-send-email-xiangxia.m.yue@gmail.com> (raw)
In-Reply-To: <1568912093-68535-1-git-send-email-xiangxia.m.yue@gmail.com>
From: Tonghao Zhang <xiangxia.m.yue@gmail.com>
Simplify the code and remove the unnecessary BUILD_BUG_ON.
Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com>
---
net/openvswitch/flow_table.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/net/openvswitch/flow_table.c b/net/openvswitch/flow_table.c
index 2d74d74..223470a 100644
--- a/net/openvswitch/flow_table.c
+++ b/net/openvswitch/flow_table.c
@@ -440,13 +440,9 @@ int ovs_flow_tbl_flush(struct flow_table *flow_table)
static u32 flow_hash(const struct sw_flow_key *key,
const struct sw_flow_key_range *range)
{
- int key_start = range->start;
- int key_end = range->end;
- const u32 *hash_key = (const u32 *)((const u8 *)key + key_start);
- int hash_u32s = (key_end - key_start) >> 2;
-
+ const u32 *hash_key = (const u32 *)((const u8 *)key + range->start);
/* Make sure number of hash bytes are multiple of u32. */
- BUILD_BUG_ON(sizeof(long) % sizeof(u32));
+ int hash_u32s = range_n_bytes(range) >> 2;
return jhash2(hash_key, hash_u32s, 0);
}
--
1.8.3.1
next prev parent reply other threads:[~2019-09-26 8:47 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-19 16:54 [PATCH net-next 0/7] optimize openvswitch flow looking up xiangxia.m.yue
2019-09-19 16:54 ` [PATCH net-next 1/7] net: openvswitch: add flow-mask cache for performance xiangxia.m.yue
2019-09-19 16:54 ` [PATCH net-next 2/7] net: openvswitch: convert mask list in mask array xiangxia.m.yue
2019-09-19 16:54 ` [PATCH net-next 3/7] net: openvswitch: shrink the mask array if necessary xiangxia.m.yue
2019-09-19 16:54 ` [PATCH net-next 4/7] net: openvswitch: optimize flow mask cache hash collision xiangxia.m.yue
2019-09-19 16:54 ` [PATCH net-next 5/7] net: openvswitch: optimize flow-mask looking up xiangxia.m.yue
2019-09-19 16:54 ` xiangxia.m.yue [this message]
2019-09-19 16:54 ` [PATCH net-next 7/7] net: openvswitch: add likely in flow_lookup xiangxia.m.yue
2019-09-26 10:14 ` [PATCH net-next 0/7] optimize openvswitch flow looking up David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1568912093-68535-7-git-send-email-xiangxia.m.yue@gmail.com \
--to=xiangxia.m.yue@gmail.com \
--cc=gvrose8192@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=pshelar@ovn.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox