Searched refs:ufid (Results 1 – 6 of 6) sorted by relevance
| /linux/net/openvswitch/ |
| H A D | flow_table.c | 575 struct table_instance *new, bool ufid) in flow_table_copy_flows() argument 588 if (ufid) in flow_table_copy_flows() 602 int n_buckets, bool ufid) in table_instance_rehash() argument 610 flow_table_copy_flows(ti, new_ti, ufid); in table_instance_rehash() 894 return jhash(sfid->ufid, sfid->ufid_len, 0); in ufid_hash() 903 return !memcmp(flow->id.ufid, sfid->ufid, sfid->ufid_len); in ovs_flow_cmp_ufid() 916 const struct sw_flow_id *ufid) in ovs_flow_tbl_lookup_ufid() argument 923 hash = ufid_hash(ufid); in ovs_flow_tbl_lookup_ufid() 928 ovs_flow_cmp_ufid(flow, ufid)) in ovs_flow_tbl_lookup_ufid() 948 bool ufid) in table_instance_expand() argument [all …]
|
| H A D | flow_netlink.h | 53 int ovs_nla_get_identifier(struct sw_flow_id *sfid, const struct nlattr *ufid,
|
| H A D | flow.h | 201 u32 ufid[MAX_UFID_LENGTH / 4]; member
|
| H A D | datapath.c | 1354 struct sw_flow_id ufid; in ovs_flow_cmd_get() local 1360 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log); in ovs_flow_cmd_get() 1381 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid); in ovs_flow_cmd_get() 1413 struct sw_flow_id ufid; in ovs_flow_cmd_del() local 1419 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log); in ovs_flow_cmd_del() 1441 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid); in ovs_flow_cmd_del()
|
| H A D | flow_netlink.c | 1879 memcpy(sfid->ufid, nla_data(attr), sfid->ufid_len); in ovs_nla_get_ufid() 1884 int ovs_nla_get_identifier(struct sw_flow_id *sfid, const struct nlattr *ufid, in ovs_nla_get_identifier() argument 1889 if (ovs_nla_get_ufid(sfid, ufid, log)) in ovs_nla_get_identifier() 2263 flow->id.ufid); in ovs_nla_put_identifier()
|
| /linux/tools/testing/selftests/net/openvswitch/ |
| H A D | ovs-dpctl.py | 2240 ufid = self.get_attr("OVS_FLOW_ATTR_UFID") 2242 if ufid is not None: 2244 "ufid:{:08x}-{:04x}-{:04x}-{:04x}-{:04x}{:08x}".format( 2245 ufid[0], 2246 ufid[1] >> 16, 2247 ufid[1] & 0xFFFF, 2248 ufid[2] >> 16, 2249 ufid[2] & 0, 2250 ufid[3], 2318 if flowstr.startswith("ufid [all...] |