Searched refs:func_id (Results 76 - 99 of 99) sorted by relevance

1234

/linux-master/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_sriov_common.c942 u8 pci_func = trans->func_id;
1017 trans->func_id = pci_func;
1243 trans->func_id = vf->pci_func;
H A Dqlcnic_ctx.c854 struct qlcnic_info *npar_info, u8 func_id)
876 cmd.req.arg[3] = (func_id << 16 | nic_size);
853 qlcnic_82xx_get_nic_info(struct qlcnic_adapter *adapter, struct qlcnic_info *npar_info, u8 func_id) argument
H A Dqlcnic_83xx_hw.c2416 struct qlcnic_info *npar_info, u8 func_id)
2428 if (func_id != ahw->pci_func) {
2429 temp = func_id << 16;
2415 qlcnic_83xx_get_nic_info(struct qlcnic_adapter *adapter, struct qlcnic_info *npar_info, u8 func_id) argument
/linux-master/scripts/mod/
H A Dfile2alias.c690 DEF_FIELD(symval, pcmcia_device_id, func_id);
705 func_id);
/linux-master/drivers/net/ethernet/broadcom/
H A Dcnic_defs.h3215 u8 func_id; member in struct:ustorm_fcoe_params
3221 u8 func_id; member in struct:ustorm_fcoe_params
3581 u8 func_id; member in struct:xstorm_fcoe_context_section
3587 u8 func_id; member in struct:xstorm_fcoe_context_section
H A Dcnic.c5007 data->general.func_id = bp->pfid;
/linux-master/drivers/net/ethernet/huawei/hinic/
H A Dhinic_hw_eqs.c556 ceq_ctrl.func_id = HINIC_HWIF_FUNC_IDX(hwdev->hwif);
H A Dhinic_ethtool.c481 settings.func_id = HINIC_HWIF_FUNC_IDX(nic_dev->hwdev->hwif);
/linux-master/drivers/net/ethernet/hisilicon/hns3/hns3pf/
H A Dhclge_main.h1136 int hclge_func_reset_cmd(struct hclge_dev *hdev, int func_id);
H A Dhclge_main.c1638 static int hclge_map_tqps_to_func(struct hclge_dev *hdev, u16 func_id, argument
1649 req->tqp_vf = func_id;
3807 static int hclge_set_vf_rst(struct hclge_dev *hdev, int func_id, bool reset) argument
3814 req->dest_vfid = func_id;
3950 int hclge_func_reset_cmd(struct hclge_dev *hdev, int func_id) argument
3958 req->fun_reset_vfid = func_id;
7538 u32 func_id; local
7541 func_id = hclge_get_port_number(HOST_PORT, 0, vfid, 0);
7548 req->func_id = cpu_to_le32(func_id);
[all...]
/linux-master/kernel/bpf/
H A Dsyscall.c5861 tracing_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog) argument
5863 return bpf_base_func_proto(func_id, prog);
5909 syscall_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog) argument
5911 switch (func_id) {
5922 return tracing_prog_func_proto(func_id, prog);
H A Dbtf.c7935 static int btf_check_kfunc_protos(struct btf *btf, u32 func_id, u32 func_flags) argument
7942 func = btf_type_by_id(btf, func_id);
/linux-master/drivers/vfio/pci/mlx5/
H A Dcmd.c10 static int mlx5vf_is_migratable(struct mlx5_core_dev *mdev, u16 func_id) argument
20 ret = mlx5_vport_get_other_func_cap(mdev, func_id, query_cap,
/linux-master/include/linux/mlx5/
H A Ddevice.h643 __be16 func_id; member in struct:mlx5_eqe_page_req
/linux-master/arch/x86/events/intel/
H A Duncore_snb.c884 if (pmu->func_id < 0)
/linux-master/drivers/net/ethernet/netronome/nfp/bpf/
H A Djit.c1740 if (meta->func_id == BPF_FUNC_map_update_elem)
1743 emit_br_relo(nfp_prog, BR_UNC, BR_OFF_RELO + meta->func_id,
1788 emit_br_relo(nfp_prog, BR_UNC, BR_OFF_RELO + meta->func_id,
/linux-master/drivers/s390/crypto/
H A Dzcrypt_ccamisc.c242 memcpy(preqcblk->func_id, "T2", 2);
H A Dzcrypt_ep11misc.c425 memcpy(cprb->func_id, "T4", 2);
/linux-master/net/ipv4/
H A Dtcp_ipv4.c3559 bpf_iter_tcp_get_func_proto(enum bpf_func_id func_id, argument
3562 switch (func_id) {
/linux-master/net/unix/
H A Daf_unix.c3696 bpf_iter_unix_get_func_proto(enum bpf_func_id func_id, argument
3699 switch (func_id) {
/linux-master/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_main.c3080 storm_memset_func_cfg(bp, &tcfg, p->func_id);
3084 storm_memset_vf_to_pf(bp, p->func_id, p->pf_id);
3085 storm_memset_func_en(bp, p->func_id, 1);
3089 storm_memset_spq_addr(bp, p->spq_map, p->func_id);
3091 XSTORM_SPQ_PROD_OFFSET(p->func_id), p->spq_prod);
3322 func_init.func_id = BP_FUNC(bp);
6176 ramrod_param.func_id = BP_FUNC(bp);
H A Dbnx2x.h1895 u16 func_id; /* abs fid */ member in struct:bnx2x_func_init_params
/linux-master/tools/lib/bpf/
H A Dlibbpf.c7202 static bool insn_is_helper_call(struct bpf_insn *insn, enum bpf_func_id *func_id) argument
7209 *func_id = insn->imm;
7218 enum bpf_func_id func_id; local
7225 if (!insn_is_helper_call(insn, &func_id))
7232 switch (func_id) {
/linux-master/drivers/net/ethernet/intel/idpf/
H A Didpf_virtchnl.c278 ctlq_msg->func_id = 0;

Completed in 585 milliseconds

1234