Searched refs:vsi (Results 101 - 125 of 131) sorted by relevance

123456

/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_ptp.c304 struct ice_vsi *vsi; local
307 vsi = ice_get_main_vsi(pf);
308 if (!vsi || !vsi->rx_rings)
312 ice_for_each_rxq(vsi, i) {
313 if (!vsi->rx_rings[i])
315 vsi->rx_rings[i]->ptp_rx = on;
1105 struct ice_vsi *vsi = pf->vsi[i]; local
1108 if (!vsi)
[all...]
H A Dice_txrx_lib.c147 ring->vsi->back->hw_rx_eipe_error++;
188 ring->vsi->back->hw_csum_rx_error++;
H A Dice_dpll.c1589 struct ice_vsi *vsi = ice_get_main_vsi(pf); local
1600 if (WARN_ON_ONCE(!vsi || !vsi->netdev))
1602 dpll_netdev_pin_clear(vsi->netdev);
1614 * pin with the parents it has in the info. Register pin with the pf's main vsi
1625 struct ice_vsi *vsi = ice_get_main_vsi(pf); local
1644 if (WARN_ON((!vsi || !vsi->netdev)))
1646 dpll_netdev_pin_set(vsi->netdev, pf->dplls.rclk.pin);
H A Dice_flex_type.h346 u16 vsi; member in struct:ice_chs_chg
H A Dice_virtchnl_fdir.c144 pf->vsi[vf->ctrl_vsi_idx] = NULL;
484 dev_dbg(dev, "NULL vf %d vsi pointer\n", vf->vf_id);
641 ctrl_vsi = pf->vsi[vf->ctrl_vsi_idx];
1265 struct ice_vsi *vsi, *ctrl_vsi; local
1276 vsi = ice_get_vf_vsi(vf);
1277 if (!vsi) {
1278 dev_dbg(dev, "Invalid vsi for VF %d\n", vf->vf_id);
1282 input->dest_vsi = vsi->idx;
1285 ctrl_vsi = pf->vsi[vf->ctrl_vsi_idx];
H A Dice_flow.c2326 * @vsi: VSI to add the RSS configuration to
2334 ice_add_rss_cfg(struct ice_hw *hw, struct ice_vsi *vsi, argument
2341 if (!vsi)
2344 vsi_handle = vsi->idx;
2499 * @vsi: VF's VSI
2506 int ice_add_avf_rss_cfg(struct ice_hw *hw, struct ice_vsi *vsi, u64 avf_hash) argument
2513 if (!vsi)
2516 vsi_handle = vsi->idx;
2590 status = ice_add_rss_cfg(hw, vsi, &hcfg);
2615 * @vsi
2618 ice_set_rss_cfg_symm(struct ice_hw *hw, struct ice_vsi *vsi, bool symm) argument
[all...]
H A Dice_switch.h25 #define ICE_SW_RULE_VSI_LIST_SIZE(s, n) struct_size((s), vsi, (n))
H A Dice_switch.c1613 * @vsi: VSI context pointer
1618 ice_save_vsi_ctx(struct ice_hw *hw, u16 vsi_handle, struct ice_vsi_ctx *vsi) argument
1620 hw->vsi_ctx[vsi_handle] = vsi;
1630 struct ice_vsi_ctx *vsi = ice_get_vsi_ctx(hw, vsi_handle); local
1633 if (!vsi)
1636 devm_kfree(ice_hw_to_dev(hw), vsi->lan_q_ctx[i]);
1637 vsi->lan_q_ctx[i] = NULL;
1638 devm_kfree(ice_hw_to_dev(hw), vsi->rdma_q_ctx[i]);
1639 vsi->rdma_q_ctx[i] = NULL;
1652 struct ice_vsi_ctx *vsi; local
1657 devm_kfree(ice_hw_to_dev(hw), vsi); local
[all...]
H A Dice_common.c4560 struct ice_vsi_ctx *vsi; local
4563 vsi = ice_get_vsi_ctx(hw, vsi_handle);
4564 if (!vsi)
4566 if (q_handle >= vsi->num_lan_q_entries[tc])
4568 if (!vsi->lan_q_ctx[tc])
4570 q_ctx = vsi->lan_q_ctx[tc];
/linux-master/kernel/bpf/
H A Dbtf.c1535 const struct btf_var_secinfo *vsi,
1549 vsi->type, vsi->offset, vsi->size);
3561 const struct btf_var_secinfo *vsi; local
3565 for_each_vsi(i, t, vsi) {
3566 const struct btf_type *var = btf_type_by_id(btf, vsi->type);
3576 off = vsi->offset;
3577 if (vsi->size != sz)
4541 const struct btf_var_secinfo *vsi; local
1533 btf_verifier_log_vsi(struct btf_verifier_env *env, const struct btf_type *datasec_type, const struct btf_var_secinfo *vsi, const char *fmt, ...) argument
4613 const struct btf_var_secinfo *vsi; local
4661 const struct btf_var_secinfo *vsi; local
[all...]
/linux-master/drivers/net/ethernet/intel/fm10k/
H A Dfm10k_iov.c85 err = hw->mac.ops.update_vlan(hw, vid, vf_info->vsi, set);
458 vf_info->vsi = i + 1;
620 hw->mac.ops.update_vlan(hw, FM10K_VLAN_ALL, vf_info->vsi, false);
H A Dfm10k.h241 u8 vsi; member in struct:fm10k_macvlan_request::__anon1024::fm10k_vlan_request
513 u8 vsi, bool set);
H A Dfm10k_netdev.c635 * @vsi: VSI index number
644 u32 vid, u8 vsi, bool set)
658 request->vlan.vsi = vsi;
643 fm10k_queue_vlan_request(struct fm10k_intfc *interface, u32 vid, u8 vsi, bool set) argument
H A Dfm10k_type.h590 u8 vsi; /* VSI identifier */ member in struct:fm10k_vf_info
/linux-master/tools/bpf/bpftool/
H A Dprog.c308 struct btf_var_secinfo *vsi; local
333 vsi = btf_var_secinfos(t_datasec);
346 for (i = 0; i < vlen; i++, vsi++) {
347 t_var = btf__type_by_id(btf, vsi->type);
360 err = btf_dumper_type(&d, t_var->type, value + vsi->offset);
375 for (i = 0; i < vlen; i++, vsi++) {
376 t_var = btf__type_by_id(btf, vsi->type);
398 err = btf_dumper_type(&d, t_var->type, value + vsi->offset);
H A Dbtf_dumper.c530 struct btf_var_secinfo *vsi; local
539 vsi = (struct btf_var_secinfo *)(t + 1);
545 ret = btf_dumper_do_type(d, vsi[i].type, 0, data + vsi[i].offset);
/linux-master/drivers/media/platform/mediatek/vcodec/encoder/
H A Dvenc_vpu_if.c16 vpu->vsi = mtk_vcodec_fw_map_dm_addr(vpu->ctx->dev->fw_handler,
159 if (IS_ERR_OR_NULL(vpu->vsi)) {
160 mtk_venc_err(vpu->ctx, "invalid venc vsi");
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Dgf119.c208 struct packed_hdmi_infoframe vsi; local
211 pack_hdmi_infoframe(&vsi, data, size);
222 nvkm_wr32(device, 0x616738 + hoff, vsi.header);
223 nvkm_wr32(device, 0x61673c + hoff, vsi.subpack0_low);
224 nvkm_wr32(device, 0x616740 + hoff, vsi.subpack0_high);
H A Dgv100.c103 struct packed_hdmi_infoframe vsi; local
106 pack_hdmi_infoframe(&vsi, data, size);
112 nvkm_wr32(device, 0x6f0108 + hoff, vsi.header);
113 nvkm_wr32(device, 0x6f010c + hoff, vsi.subpack0_low);
114 nvkm_wr32(device, 0x6f0110 + hoff, vsi.subpack0_high);
/linux-master/tools/lib/bpf/
H A Dbtf_dump.c2231 const struct btf_var_secinfo *vsi; local
2238 for (i = 0, vsi = btf_var_secinfos(t); i < btf_vlen(t); i++, vsi++) {
2239 var = btf__type_by_id(d->btf, vsi->type);
2240 err = btf_dump_dump_type_data(d, NULL, var, vsi->type, data + vsi->offset, 0, 0);
/linux-master/drivers/infiniband/hw/irdma/
H A Dverbs.c246 qp->vsi->qos[qp->user_pri].qs_handle;
769 udp_info->snd_mss = ib_mtu_enum_to_int(ib_mtu_int_to_enum(iwdev->vsi.mtu));
901 init_info.vsi = &iwdev->vsi;
1013 if (dev->ws_add(&iwdev->vsi, 0)) {
1267 dev->ws_remove(iwqp->sc_qp.vsi, ctx_info->user_pri);
1268 if (iwqp->sc_qp.vsi->dscp_mode)
1270 iwqp->sc_qp.vsi->dscp_map[irdma_tos2dscp(udp_info->tos)];
1280 if (dev->ws_add(iwqp->sc_qp.vsi, ctx_info->user_pri))
2089 info.vsi
[all...]
/linux-master/drivers/net/ethernet/intel/iavf/
H A Diavf.h103 struct iavf_vsi *vsi; member in struct:iavf_q_vector
110 u16 v_idx; /* index in the vsi->q_vector array. */
416 struct iavf_vsi vsi; member in struct:iavf_adapter
/linux-master/drivers/media/platform/mediatek/vcodec/decoder/
H A Dvdec_vpu_if.c20 /* the content in vsi is initialized to 0 in VPU */
21 vpu->vsi = mtk_vcodec_fw_map_dm_addr(vpu->ctx->dev->fw_handler,
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_prototype.h312 i40e_aq_add_cloud_filters(struct i40e_hw *hw, u16 vsi,
316 i40e_aq_rem_cloud_filters(struct i40e_hw *hw, u16 vsi,
H A Di40e_ptp.c1475 struct net_device *netdev = pf->vsi[pf->lan_vsi]->netdev;
1558 pf->vsi[pf->lan_vsi]->netdev->name);

Completed in 351 milliseconds

123456