mirror of
https://github.com/openvswitch/ovs
synced 2025-08-30 22:05:19 +00:00
util: Pass 128-bit arguments directly instead of using pointers.
Commit f2d105b5
(ofproto-dpif-xlate: xlate ct_{mark, label} correctly.)
introduced the ovs_u128_and() function. It directly takes ovs_u128
values as arguments instead of pointers to them. As this is a bit more
direct way to deal with 128-bit values, modify the other utility
functions to do the same.
Signed-off-by: Justin Pettit <jpettit@ovn.org>
Acked-by: Joe Stringer <joe@ovn.org>
This commit is contained in:
@@ -903,7 +903,7 @@ dpif_probe_feature(struct dpif *dpif, const char *name,
|
||||
PMD_ID_NULL, &reply, &flow);
|
||||
if (!error
|
||||
&& (!ufid || (flow.ufid_present
|
||||
&& ovs_u128_equals(ufid, &flow.ufid)))) {
|
||||
&& ovs_u128_equals(*ufid, flow.ufid)))) {
|
||||
enable_feature = true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user