Home
last modified time | relevance | path

Searched refs:ufid_flags (Results 1 – 1 of 1) sorted by relevance

/linux-4.4.14/net/openvswitch/
Ddatapath.c706 static bool should_fill_key(const struct sw_flow_id *sfid, uint32_t ufid_flags) in should_fill_key() argument
709 !(ufid_flags & OVS_UFID_F_OMIT_KEY); in should_fill_key()
712 static bool should_fill_mask(uint32_t ufid_flags) in should_fill_mask() argument
714 return !(ufid_flags & OVS_UFID_F_OMIT_MASK); in should_fill_mask()
717 static bool should_fill_actions(uint32_t ufid_flags) in should_fill_actions() argument
719 return !(ufid_flags & OVS_UFID_F_OMIT_ACTIONS); in should_fill_actions()
724 uint32_t ufid_flags) in ovs_flow_cmd_msg_size() argument
733 if (!sfid || should_fill_key(sfid, ufid_flags)) in ovs_flow_cmd_msg_size()
737 if (should_fill_mask(ufid_flags)) in ovs_flow_cmd_msg_size()
741 if (should_fill_actions(ufid_flags)) in ovs_flow_cmd_msg_size()
[all …]