Home
last modified time | relevance | path

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

/linux/net/openvswitch/
H A Dflow_netlink.h53 int ovs_nla_get_identifier(struct sw_flow_id *sfid, const struct nlattr *ufid,
H A Dflow.h201 u32 ufid[MAX_UFID_LENGTH / 4]; member
H A Ddatapath.c1354 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 Dflow_netlink.c1879 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 Dovs-dpctl.py2240 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...]