Lines Matching refs:profile

1445 /* this is a recipe to profile association bitmap */
1449 /* this is a profile to recipe association bitmap */
2099 * ice_aq_map_recipe_to_profile - Map recipe to packet profile
2101 * @profile_id: package profile ID to associate the recipe with
2104 * Recipe to profile association (0x0291)
2117 * profile we are associating the recipe to
2125 * ice_aq_get_recipe_to_profile - Map recipe to packet profile
2127 * @profile_id: package profile ID to associate the recipe with
2130 * Associate profile ID with given recipe (0x0293)
2255 * ice_get_recp_to_prof_map - updates recipe to profile mapping
2302 * @refresh_required: true if we should get recipe to profile mapping from FW
2334 /* Get recipe to profile map so that we can get the fv from lkups that
2375 /* get the first profile that is associated with rid */
2777 * 2. GENERIC VALUE action to hold the profile ID
5019 * b. Optional : PossibleIndexes &= profile[p].possibleIndexes
5047 /* For each profile we are going to associate the recipe with, add the
5048 * recipes that are associated with that profile. This will give us
5589 ice_debug(hw, ICE_DBG_SW, "profile: %d\n", fvit->profile_id);
5637 /* Update profile to recipe bitmap array */
5641 /* Update recipe to profile bitmap array */
5682 * @dummy_pkt: dummy packet profile pattern to which VLAN tag(s) will be added
5689 struct ice_dummy_pkt_profile *profile;
5737 profile = kzalloc(sizeof(*profile), GFP_KERNEL);
5738 if (!profile) {
5744 profile->offsets = offsets;
5745 profile->pkt = pkt;
5746 profile->pkt_len = buf_len;
5747 profile->match |= ICE_PKT_KMALLOC;
5749 return profile;
5844 * @profile: dummy packet profile (the template, its size and header offsets)
5849 const struct ice_dummy_pkt_profile *profile)
5859 memcpy(pkt, profile->pkt, profile->pkt_len);
5862 const struct ice_dummy_pkt_offsets *offsets = profile->offsets;
5962 s_rule->hdr_len = cpu_to_le16(profile->pkt_len);
6258 const struct ice_dummy_pkt_profile *profile;
6267 /* Initialize profile to result index bitmap */
6293 profile = ice_find_dummy_packet(lkups, lkups_cnt, rinfo->tun_type);
6294 if (IS_ERR(profile))
6295 return PTR_ERR(profile);
6348 rule_buf_sz = ICE_SW_RULE_RX_TX_HDR_SIZE(s_rule, profile->pkt_len);
6422 status = ice_fill_adv_dummy_packet(lkups, lkups_cnt, s_rule, profile);
6427 profile->offsets);
6433 profile->offsets);
6483 if (profile->match & ICE_PKT_KMALLOC) {
6484 kfree(profile->offsets);
6485 kfree(profile->pkt);
6486 kfree(profile);