• Home
  • Raw
  • Download

Lines Matching refs:hdr

87 	rrb->request.hdr.len = sizeof(rrb->request);  in clp_query_pci_fngrp()
88 rrb->request.hdr.cmd = CLP_QUERY_PCI_FNGRP; in clp_query_pci_fngrp()
89 rrb->response.hdr.len = sizeof(rrb->response); in clp_query_pci_fngrp()
93 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK) in clp_query_pci_fngrp()
97 zpci_err_clp(rrb->response.hdr.rsp, rc); in clp_query_pci_fngrp()
140 rrb->request.hdr.len = sizeof(rrb->request); in clp_query_pci_fn()
141 rrb->request.hdr.cmd = CLP_QUERY_PCI_FN; in clp_query_pci_fn()
142 rrb->response.hdr.len = sizeof(rrb->response); in clp_query_pci_fn()
146 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK) { in clp_query_pci_fn()
154 zpci_err_clp(rrb->response.hdr.rsp, rc); in clp_query_pci_fn()
209 rrb->request.hdr.len = sizeof(rrb->request); in clp_set_pci_fn()
210 rrb->request.hdr.cmd = CLP_SET_PCI_FN; in clp_set_pci_fn()
211 rrb->response.hdr.len = sizeof(rrb->response); in clp_set_pci_fn()
217 if (rrb->response.hdr.rsp == CLP_RC_SETPCIFN_BUSY) { in clp_set_pci_fn()
223 } while (rrb->response.hdr.rsp == CLP_RC_SETPCIFN_BUSY); in clp_set_pci_fn()
225 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK) in clp_set_pci_fn()
229 zpci_err_clp(rrb->response.hdr.rsp, rc); in clp_set_pci_fn()
275 rrb->request.hdr.len = sizeof(rrb->request); in clp_list_pci()
276 rrb->request.hdr.cmd = CLP_LIST_PCI; in clp_list_pci()
278 rrb->response.hdr.len = CLP_BLK_SIZE - LIST_PCI_HDR_LEN; in clp_list_pci()
283 if (rc || rrb->response.hdr.rsp != CLP_RC_OK) { in clp_list_pci()
285 zpci_err_clp(rrb->response.hdr.rsp, rc); in clp_list_pci()
293 entries = (rrb->response.hdr.len - LIST_PCI_HDR_LEN) / in clp_list_pci()