Searched refs:ufid (Results 1 - 6 of 6) sorted by path

/linux-master/net/openvswitch/
H A Dflow_netlink.h53 int ovs_nla_get_identifier(struct sw_flow_id *sfid, const struct nlattr *ufid,
H A Ddatapath.c1324 struct sw_flow_id ufid; local
1330 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1351 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
1383 struct sw_flow_id ufid; local
1389 ufid_present = ovs_nla_get_ufid(&ufid, a[OVS_FLOW_ATTR_UFID], log);
1411 flow = ovs_flow_tbl_lookup_ufid(&dp->table, &ufid);
H A Dflow.h201 u32 ufid[MAX_UFID_LENGTH / 4]; member in union:sw_flow_id::__anon4699
H A Dflow_netlink.c1899 OVS_NLERR(log, "ufid size %u bytes exceeds the range (1, %d)",
1907 /* Initializes 'flow->ufid', returning true if 'attr' contains a valid UFID,
1915 memcpy(sfid->ufid, nla_data(attr), sfid->ufid_len);
1920 int ovs_nla_get_identifier(struct sw_flow_id *sfid, const struct nlattr *ufid, argument
1925 if (ovs_nla_get_ufid(sfid, ufid, log))
2299 flow->id.ufid);
H A Dflow_table.c577 struct table_instance *new, bool ufid)
590 if (ufid)
604 int n_buckets, bool ufid)
612 flow_table_copy_flows(ti, new_ti, ufid);
896 return jhash(sfid->ufid, sfid->ufid_len, 0);
905 return !memcmp(flow->id.ufid, sfid->ufid, sfid->ufid_len);
918 const struct sw_flow_id *ufid)
925 hash = ufid_hash(ufid);
930 ovs_flow_cmp_ufid(flow, ufid))
576 flow_table_copy_flows(struct table_instance *old, struct table_instance *new, bool ufid) argument
603 table_instance_rehash(struct table_instance *ti, int n_buckets, bool ufid) argument
917 ovs_flow_tbl_lookup_ufid(struct flow_table *tbl, const struct sw_flow_id *ufid) argument
949 table_instance_expand(struct table_instance *ti, bool ufid) argument
[all...]
/linux-master/tools/testing/selftests/net/openvswitch/
H A Dovs-dpctl.py1796 ufid = self.get_attr("OVS_FLOW_ATTR_UFID")
1798 if ufid is not None:
1800 "ufid:{:08x}-{:04x}-{:04x}-{:04x}-{:04x}{:08x}".format(
1801 ufid[0],
1802 ufid[1] >> 16,
1803 ufid[1] & 0xFFFF,
1804 ufid[2] >> 16,
1805 ufid[2] & 0,
1806 ufid[3],
1874 if flowstr.startswith("ufid
[all...]

Completed in 437 milliseconds