Lines Matching full:comp

25 	union pds_core_adminq_comp comp = {};  in pds_vdpa_init_hw()  local
30 &comp, 0); in pds_vdpa_init_hw()
33 comp.status, ERR_PTR(err)); in pds_vdpa_init_hw()
47 union pds_core_adminq_comp comp = {}; in pds_vdpa_cmd_reset() local
50 err = pds_client_adminq_cmd(padev, &cmd, sizeof(cmd.vdpa), &comp, 0); in pds_vdpa_cmd_reset()
53 comp.status, ERR_PTR(err)); in pds_vdpa_cmd_reset()
68 union pds_core_adminq_comp comp = {}; in pds_vdpa_cmd_set_status() local
71 err = pds_client_adminq_cmd(padev, &cmd, sizeof(cmd.vdpa_status), &comp, 0); in pds_vdpa_cmd_set_status()
74 status, comp.status, ERR_PTR(err)); in pds_vdpa_cmd_set_status()
89 union pds_core_adminq_comp comp = {}; in pds_vdpa_cmd_set_mac() local
94 &comp, 0); in pds_vdpa_cmd_set_mac()
97 mac, comp.status, ERR_PTR(err)); in pds_vdpa_cmd_set_mac()
113 union pds_core_adminq_comp comp = {}; in pds_vdpa_cmd_set_max_vq_pairs() local
117 &comp, 0); in pds_vdpa_cmd_set_max_vq_pairs()
120 max_vqp, comp.status, ERR_PTR(err)); in pds_vdpa_cmd_set_max_vq_pairs()
143 union pds_core_adminq_comp comp = {}; in pds_vdpa_cmd_init_vq() local
151 &comp, 0); in pds_vdpa_cmd_init_vq()
154 qid, comp.status, ERR_PTR(err)); in pds_vdpa_cmd_init_vq()
170 union pds_core_adminq_comp comp = {}; in pds_vdpa_cmd_reset_vq() local
174 &comp, 0); in pds_vdpa_cmd_reset_vq()
177 qid, comp.status, ERR_PTR(err)); in pds_vdpa_cmd_reset_vq()
181 vq_info->avail_idx = le16_to_cpu(comp.vdpa_vq_reset.avail_index) ^ invert_idx; in pds_vdpa_cmd_reset_vq()
182 vq_info->used_idx = le16_to_cpu(comp.vdpa_vq_reset.used_index) ^ invert_idx; in pds_vdpa_cmd_reset_vq()