/Linux-v6.6/net/openvswitch/ |
D | flow.h | 271 static inline bool ovs_identifier_is_ufid(const struct sw_flow_id *sfid) in ovs_identifier_is_ufid() argument 273 return sfid->ufid_len; in ovs_identifier_is_ufid() 276 static inline bool ovs_identifier_is_key(const struct sw_flow_id *sfid) in ovs_identifier_is_key() argument 278 return !ovs_identifier_is_ufid(sfid); in ovs_identifier_is_key()
|
D | flow_table.c | 897 static u32 ufid_hash(const struct sw_flow_id *sfid) in ufid_hash() argument 899 return jhash(sfid->ufid, sfid->ufid_len, 0); in ufid_hash() 903 const struct sw_flow_id *sfid) in ovs_flow_cmp_ufid() argument 905 if (flow->id.ufid_len != sfid->ufid_len) in ovs_flow_cmp_ufid() 908 return !memcmp(flow->id.ufid, sfid->ufid, sfid->ufid_len); in ovs_flow_cmp_ufid()
|
D | datapath.c | 755 static bool should_fill_key(const struct sw_flow_id *sfid, uint32_t ufid_flags) in should_fill_key() argument 757 return ovs_identifier_is_ufid(sfid) && in should_fill_key() 772 const struct sw_flow_id *sfid, in ovs_flow_cmd_msg_size() argument 780 if (sfid && ovs_identifier_is_ufid(sfid)) in ovs_flow_cmd_msg_size() 781 len += nla_total_size(sfid->ufid_len); in ovs_flow_cmd_msg_size() 786 if (!sfid || should_fill_key(sfid, ufid_flags)) in ovs_flow_cmd_msg_size() 923 const struct sw_flow_id *sfid, in ovs_flow_cmd_alloc_info() argument 934 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags); in ovs_flow_cmd_alloc_info() 1224 struct sw_flow_id sfid; in ovs_flow_cmd_set() local 1230 ufid_present = ovs_nla_get_ufid(&sfid, a[OVS_FLOW_ATTR_UFID], log); in ovs_flow_cmd_set() [all …]
|
D | flow_netlink.h | 53 int ovs_nla_get_identifier(struct sw_flow_id *sfid, const struct nlattr *ufid,
|
D | flow_netlink.c | 1897 bool ovs_nla_get_ufid(struct sw_flow_id *sfid, const struct nlattr *attr, in ovs_nla_get_ufid() argument 1900 sfid->ufid_len = get_ufid_len(attr, log); in ovs_nla_get_ufid() 1901 if (sfid->ufid_len) in ovs_nla_get_ufid() 1902 memcpy(sfid->ufid, nla_data(attr), sfid->ufid_len); in ovs_nla_get_ufid() 1904 return sfid->ufid_len; in ovs_nla_get_ufid() 1907 int ovs_nla_get_identifier(struct sw_flow_id *sfid, const struct nlattr *ufid, in ovs_nla_get_identifier() argument 1912 if (ovs_nla_get_ufid(sfid, ufid, log)) in ovs_nla_get_identifier() 1920 sfid->unmasked_key = new_key; in ovs_nla_get_identifier()
|
/Linux-v6.6/drivers/net/ethernet/microchip/sparx5/ |
D | sparx5_psfp.c | 67 u32 sparx5_psfp_sf_get_sg(struct sparx5 *sparx5, u32 sfid) in sparx5_psfp_sf_get_sg() argument 70 ANA_AC_TSN_SF_CFG(sfid))); in sparx5_psfp_sf_get_sg() 73 void sparx5_isdx_conf_set(struct sparx5 *sparx5, u32 isdx, u32 sfid, u32 fmid) in sparx5_isdx_conf_set() argument 75 spx5_rmw(ANA_L2_TSN_CFG_TSN_SFID_SET(sfid), ANA_L2_TSN_CFG_TSN_SFID, in sparx5_isdx_conf_set()
|
D | sparx5_tc_flower.c | 1234 u32 isdx, sfid, sgid, fmid; in sparx5_tc_free_psfp_resources() local 1244 sfid = sparx5_psfp_isdx_get_sf(sparx5, isdx); in sparx5_tc_free_psfp_resources() 1246 if (!sfid) in sparx5_tc_free_psfp_resources() 1250 sgid = sparx5_psfp_sf_get_sg(sparx5, sfid); in sparx5_tc_free_psfp_resources() 1260 if (sparx5_psfp_sf_del(sparx5, sfid) < 0) in sparx5_tc_free_psfp_resources() 1262 __LINE__, sfid); in sparx5_tc_free_psfp_resources()
|
D | sparx5_main.h | 534 u32 sparx5_psfp_sf_get_sg(struct sparx5 *sparx5, u32 sfid); 535 void sparx5_isdx_conf_set(struct sparx5 *sparx5, u32 isdx, u32 sfid, u32 fmid);
|
/Linux-v6.6/drivers/net/dsa/ocelot/ |
D | felix_vsc9959.c | 1700 u32 sfid; member 1795 int ret, sfid, ssid; in vsc9959_mact_stream_set() local 1816 sfid = stream->sfid_valid ? stream->sfid : -1; in vsc9959_mact_stream_set() 1820 sfid, ssid); in vsc9959_mact_stream_set() 1935 static int vsc9959_psfp_sfidmask_set(struct ocelot *ocelot, u32 sfid, int ports) in vsc9959_psfp_sfidmask_set() argument 1940 ANA_TABLES_SFIDTIDX_SFID_INDEX(sfid), in vsc9959_psfp_sfidmask_set() 2331 stream_entry->sfid); in vsc9959_psfp_filter_add() 2334 vsc9959_psfp_sfi_table_del(ocelot, stream_entry->sfid); in vsc9959_psfp_filter_add() 2351 stream_entry->sfid = old_sfi.index; in vsc9959_psfp_filter_add() 2358 stream.sfid = sfi.index; in vsc9959_psfp_filter_add() [all …]
|
/Linux-v6.6/drivers/net/ethernet/mscc/ |
D | ocelot.c | 178 int sfid, int ssid) in ocelot_mact_learn_streamdata() argument 185 (sfid < 0 ? 0 : ANA_TABLES_STREAMDATA_SFID_VALID) | in ocelot_mact_learn_streamdata() 186 ANA_TABLES_STREAMDATA_SFID(sfid) | in ocelot_mact_learn_streamdata()
|
/Linux-v6.6/include/soc/mscc/ |
D | ocelot.h | 1151 int sfid, int ssid);
|
/Linux-v6.6/drivers/s390/char/ |
D | raw3270.c | 412 char sfid; /* 0x81 if Query Reply */ member
|