Home
last modified time | relevance | path

Searched refs:resp_hdr (Results 1 - 25 of 31) sorted by relevance

12

/kernel/linux/linux-5.10/drivers/scsi/bnx2i/
H A Dbnx2i_hwi.c1440 struct iscsi_login_rsp *resp_hdr; in bnx2i_process_login_resp() local
1451 resp_hdr = (struct iscsi_login_rsp *) &bnx2i_conn->gen_pdu.resp_hdr; in bnx2i_process_login_resp()
1452 memset(resp_hdr, 0, sizeof(struct iscsi_hdr)); in bnx2i_process_login_resp()
1453 resp_hdr->opcode = login->op_code; in bnx2i_process_login_resp()
1454 resp_hdr->flags = login->response_flags; in bnx2i_process_login_resp()
1455 resp_hdr->max_version = login->version_max; in bnx2i_process_login_resp()
1456 resp_hdr->active_version = login->version_active; in bnx2i_process_login_resp()
1457 resp_hdr->hlength = 0; in bnx2i_process_login_resp()
1459 hton24(resp_hdr in bnx2i_process_login_resp()
1508 struct iscsi_text_rsp *resp_hdr; bnx2i_process_text_resp() local
1569 struct iscsi_tm_rsp *resp_hdr; bnx2i_process_tmf_resp() local
1608 struct iscsi_logout_rsp *resp_hdr; bnx2i_process_logout_resp() local
1745 struct iscsi_async *resp_hdr; bnx2i_process_async_mesg() local
[all...]
H A Dbnx2i.h180 * @resp_hdr: iscsi header where iscsi login response header is to
200 struct iscsi_hdr resp_hdr; member
/kernel/linux/linux-6.6/drivers/scsi/bnx2i/
H A Dbnx2i_hwi.c1440 struct iscsi_login_rsp *resp_hdr; in bnx2i_process_login_resp() local
1451 resp_hdr = (struct iscsi_login_rsp *) &bnx2i_conn->gen_pdu.resp_hdr; in bnx2i_process_login_resp()
1452 memset(resp_hdr, 0, sizeof(struct iscsi_hdr)); in bnx2i_process_login_resp()
1453 resp_hdr->opcode = login->op_code; in bnx2i_process_login_resp()
1454 resp_hdr->flags = login->response_flags; in bnx2i_process_login_resp()
1455 resp_hdr->max_version = login->version_max; in bnx2i_process_login_resp()
1456 resp_hdr->active_version = login->version_active; in bnx2i_process_login_resp()
1457 resp_hdr->hlength = 0; in bnx2i_process_login_resp()
1459 hton24(resp_hdr in bnx2i_process_login_resp()
1508 struct iscsi_text_rsp *resp_hdr; bnx2i_process_text_resp() local
1569 struct iscsi_tm_rsp *resp_hdr; bnx2i_process_tmf_resp() local
1608 struct iscsi_logout_rsp *resp_hdr; bnx2i_process_logout_resp() local
1745 struct iscsi_async *resp_hdr; bnx2i_process_async_mesg() local
[all...]
H A Dbnx2i.h180 * @resp_hdr: iscsi header where iscsi login response header is to
200 struct iscsi_hdr resp_hdr; member
/kernel/linux/linux-5.10/net/nfc/nci/
H A Dspi.c179 unsigned char req[2], resp_hdr[2]; in __nci_spi_read() local
196 rx.rx_buf = resp_hdr; in __nci_spi_read()
207 rx_len = ((resp_hdr[0] & NCI_SPI_MSB_PAYLOAD_MASK) << 8) + in __nci_spi_read()
208 resp_hdr[1] + NCI_SPI_CRC_LEN; in __nci_spi_read()
210 rx_len = (resp_hdr[0] << 8) | resp_hdr[1]; in __nci_spi_read()
232 *(u8 *)skb_push(skb, 1) = resp_hdr[1]; in __nci_spi_read()
233 *(u8 *)skb_push(skb, 1) = resp_hdr[0]; in __nci_spi_read()
/kernel/linux/linux-6.6/net/nfc/nci/
H A Dspi.c179 unsigned char req[2], resp_hdr[2]; in __nci_spi_read() local
196 rx.rx_buf = resp_hdr; in __nci_spi_read()
207 rx_len = ((resp_hdr[0] & NCI_SPI_MSB_PAYLOAD_MASK) << 8) + in __nci_spi_read()
208 resp_hdr[1] + NCI_SPI_CRC_LEN; in __nci_spi_read()
210 rx_len = (resp_hdr[0] << 8) | resp_hdr[1]; in __nci_spi_read()
232 *(u8 *)skb_push(skb, 1) = resp_hdr[1]; in __nci_spi_read()
233 *(u8 *)skb_push(skb, 1) = resp_hdr[0]; in __nci_spi_read()
/kernel/linux/linux-5.10/drivers/scsi/qedi/
H A Dqedi_fw.c36 struct iscsi_logout_rsp *resp_hdr; in qedi_process_logout_resp() local
44 resp_hdr = (struct iscsi_logout_rsp *)&qedi_conn->gen_pdu.resp_hdr; in qedi_process_logout_resp()
45 memset(resp_hdr, 0, sizeof(struct iscsi_hdr)); in qedi_process_logout_resp()
46 resp_hdr->opcode = cqe_logout_response->opcode; in qedi_process_logout_resp()
47 resp_hdr->flags = cqe_logout_response->flags; in qedi_process_logout_resp()
48 resp_hdr->hlength = 0; in qedi_process_logout_resp()
50 resp_hdr->itt = build_itt(cqe->cqe_solicited.itid, conn->session->age); in qedi_process_logout_resp()
51 resp_hdr->statsn = cpu_to_be32(cqe_logout_response->stat_sn); in qedi_process_logout_resp()
52 resp_hdr in qedi_process_logout_resp()
477 struct iscsi_async *resp_hdr; qedi_process_async_mesg() local
[all...]
H A Dqedi_iscsi.h117 * @resp_hdr: iscsi header where iscsi login response header is to
137 struct iscsi_hdr resp_hdr; member
/kernel/linux/linux-6.6/drivers/scsi/qedi/
H A Dqedi_fw.c36 struct iscsi_logout_rsp *resp_hdr; in qedi_process_logout_resp() local
44 resp_hdr = (struct iscsi_logout_rsp *)&qedi_conn->gen_pdu.resp_hdr; in qedi_process_logout_resp()
45 memset(resp_hdr, 0, sizeof(struct iscsi_hdr)); in qedi_process_logout_resp()
46 resp_hdr->opcode = cqe_logout_response->opcode; in qedi_process_logout_resp()
47 resp_hdr->flags = cqe_logout_response->flags; in qedi_process_logout_resp()
48 resp_hdr->hlength = 0; in qedi_process_logout_resp()
50 resp_hdr->itt = build_itt(cqe->cqe_solicited.itid, conn->session->age); in qedi_process_logout_resp()
51 resp_hdr->statsn = cpu_to_be32(cqe_logout_response->stat_sn); in qedi_process_logout_resp()
52 resp_hdr in qedi_process_logout_resp()
488 struct iscsi_async *resp_hdr; qedi_process_async_mesg() local
[all...]
H A Dqedi_iscsi.h118 * @resp_hdr: iscsi header where iscsi login response header is to
138 struct iscsi_hdr resp_hdr; member
/kernel/linux/linux-6.6/drivers/virt/coco/sev-guest/
H A Dsev-guest.c285 struct snp_guest_msg_hdr *resp_hdr = &resp->hdr; in verify_and_dec_payload() local
288 resp_hdr->msg_seqno, resp_hdr->msg_type, resp_hdr->msg_version, resp_hdr->msg_sz); in verify_and_dec_payload()
294 if (unlikely(resp_hdr->msg_seqno != (req_hdr->msg_seqno + 1))) in verify_and_dec_payload()
298 if (resp_hdr->msg_type != (req_hdr->msg_type + 1) || in verify_and_dec_payload()
299 resp_hdr->msg_version != req_hdr->msg_version) in verify_and_dec_payload()
306 if (unlikely((resp_hdr->msg_sz + crypto->a_len) > sz)) in verify_and_dec_payload()
310 return dec_payload(snp_dev, resp, payload, resp_hdr in verify_and_dec_payload()
[all...]
/kernel/linux/linux-5.10/samples/mei/
H A Dmei-amt-version.c348 const struct amt_host_if_msg_header *resp_hdr, in amt_verify_response_header()
353 } else if (response_size != (resp_hdr->length + in amt_verify_response_header()
356 } else if (resp_hdr->command != command) { in amt_verify_response_header()
358 } else if (resp_hdr->_reserved != 0) { in amt_verify_response_header()
360 } else if (resp_hdr->version.major != AMT_MAJOR_VERSION || in amt_verify_response_header()
361 resp_hdr->version.minor < AMT_MINOR_VERSION) { in amt_verify_response_header()
347 amt_verify_response_header(uint32_t command, const struct amt_host_if_msg_header *resp_hdr, uint32_t response_size) amt_verify_response_header() argument
/kernel/linux/linux-6.6/samples/mei/
H A Dmei-amt-version.c357 const struct amt_host_if_msg_header *resp_hdr, in amt_verify_response_header()
362 } else if (response_size != (resp_hdr->length + in amt_verify_response_header()
365 } else if (resp_hdr->command != command) { in amt_verify_response_header()
367 } else if (resp_hdr->_reserved != 0) { in amt_verify_response_header()
369 } else if (resp_hdr->version.major != AMT_MAJOR_VERSION || in amt_verify_response_header()
370 resp_hdr->version.minor < AMT_MINOR_VERSION) { in amt_verify_response_header()
356 amt_verify_response_header(uint32_t command, const struct amt_host_if_msg_header *resp_hdr, uint32_t response_size) amt_verify_response_header() argument
/kernel/linux/linux-5.10/drivers/mailbox/
H A Dbcm-pdc-mailbox.c269 * @resp_hdr: Virtual address of buffer used to catch DMA rx status
276 void *resp_hdr; member
587 u8 *resp_hdr; /* virtual addr of start of resp message DMA header */ in pdc_receive_one() local
625 resp_hdr = rx_ctx->resp_hdr; in pdc_receive_one()
644 rx_status = *((u32 *)resp_hdr); in pdc_receive_one()
660 dma_pool_free(pdcs->rx_buf_pool, resp_hdr, resp_hdr_daddr); in pdc_receive_one()
854 rx_ctx->resp_hdr = vaddr; in pdc_rx_list_init()
/kernel/linux/linux-6.6/drivers/mailbox/
H A Dbcm-pdc-mailbox.c269 * @resp_hdr: Virtual address of buffer used to catch DMA rx status
276 void *resp_hdr; member
587 u8 *resp_hdr; /* virtual addr of start of resp message DMA header */ in pdc_receive_one() local
625 resp_hdr = rx_ctx->resp_hdr; in pdc_receive_one()
644 rx_status = *((u32 *)resp_hdr); in pdc_receive_one()
660 dma_pool_free(pdcs->rx_buf_pool, resp_hdr, resp_hdr_daddr); in pdc_receive_one()
854 rx_ctx->resp_hdr = vaddr; in pdc_rx_list_init()
/kernel/linux/linux-5.10/drivers/vfio/fsl-mc/
H A Dvfio_fsl_mc.c389 struct mc_cmd_header *resp_hdr; in vfio_fsl_mc_send_command() local
393 resp_hdr = (struct mc_cmd_header *)&header; in vfio_fsl_mc_send_command()
394 status = (enum mc_cmd_status)resp_hdr->status; in vfio_fsl_mc_send_command()
/kernel/linux/linux-6.6/drivers/vfio/fsl-mc/
H A Dvfio_fsl_mc.c300 struct mc_cmd_header *resp_hdr; in vfio_fsl_mc_send_command() local
304 resp_hdr = (struct mc_cmd_header *)&header; in vfio_fsl_mc_send_command()
305 status = (enum mc_cmd_status)resp_hdr->status; in vfio_fsl_mc_send_command()
/kernel/linux/linux-5.10/drivers/scsi/be2iscsi/
H A Dbe_cmds.h322 struct be_cmd_resp_hdr resp_hdr; member
752 struct be_cmd_resp_hdr resp_hdr; member
777 struct be_cmd_resp_hdr resp_hdr; member
960 struct be_cmd_resp_hdr resp_hdr; member
1257 struct be_cmd_resp_hdr resp_hdr; member
/kernel/linux/linux-6.6/drivers/scsi/be2iscsi/
H A Dbe_cmds.h322 struct be_cmd_resp_hdr resp_hdr; member
752 struct be_cmd_resp_hdr resp_hdr; member
777 struct be_cmd_resp_hdr resp_hdr; member
960 struct be_cmd_resp_hdr resp_hdr; member
1257 struct be_cmd_resp_hdr resp_hdr; member
/kernel/linux/linux-5.10/drivers/crypto/cavium/nitrox/
H A Dnitrox_req.h487 struct resp_hdr { struct
520 struct resp_hdr resp;
/kernel/linux/linux-6.6/drivers/crypto/cavium/nitrox/
H A Dnitrox_req.h491 struct resp_hdr { struct
524 struct resp_hdr resp;
/kernel/linux/linux-6.6/drivers/media/pci/intel/ivsc/
H A Dmei_ace.c230 union ace_notif_hdr *resp_hdr = &ace->cmd_response.hdr; in mei_ace_send() local
278 if (resp_hdr->response.cmd_id != cmd_hdr->cmd_id) in mei_ace_send()
/kernel/linux/linux-5.10/drivers/net/ethernet/emulex/benet/
H A Dbe_cmds.c187 struct be_cmd_resp_hdr *resp_hdr) in be_async_cmd_process()
192 if (resp_hdr) { in be_async_cmd_process()
193 opcode = resp_hdr->opcode; in be_async_cmd_process()
194 subsystem = resp_hdr->subsystem; in be_async_cmd_process()
230 (void *)resp_hdr; in be_async_cmd_process()
247 struct be_cmd_resp_hdr *resp_hdr; in be_mcc_compl_process() local
257 resp_hdr = be_decode_resp_hdr(compl->tag0, compl->tag1); in be_mcc_compl_process()
258 if (resp_hdr) { in be_mcc_compl_process()
259 opcode = resp_hdr->opcode; in be_mcc_compl_process()
260 subsystem = resp_hdr in be_mcc_compl_process()
185 be_async_cmd_process(struct be_adapter *adapter, struct be_mcc_compl *compl, struct be_cmd_resp_hdr *resp_hdr) be_async_cmd_process() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/emulex/benet/
H A Dbe_cmds.c188 struct be_cmd_resp_hdr *resp_hdr) in be_async_cmd_process()
193 if (resp_hdr) { in be_async_cmd_process()
194 opcode = resp_hdr->opcode; in be_async_cmd_process()
195 subsystem = resp_hdr->subsystem; in be_async_cmd_process()
231 (void *)resp_hdr; in be_async_cmd_process()
248 struct be_cmd_resp_hdr *resp_hdr; in be_mcc_compl_process() local
259 resp_hdr = be_decode_resp_hdr(compl->tag0, compl->tag1); in be_mcc_compl_process()
260 if (resp_hdr) { in be_mcc_compl_process()
261 opcode = resp_hdr->opcode; in be_mcc_compl_process()
262 subsystem = resp_hdr in be_mcc_compl_process()
186 be_async_cmd_process(struct be_adapter *adapter, struct be_mcc_compl *compl, struct be_cmd_resp_hdr *resp_hdr) be_async_cmd_process() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/microsoft/mana/
H A Dmana_en.c764 static int mana_verify_resp_hdr(const struct gdma_resp_hdr *resp_hdr, in mana_verify_resp_hdr() argument
768 if (resp_hdr->response.msg_type != expected_code) in mana_verify_resp_hdr()
771 if (resp_hdr->response.msg_version < GDMA_MESSAGE_V1) in mana_verify_resp_hdr()
774 if (resp_hdr->response.msg_size < min_size) in mana_verify_resp_hdr()

Completed in 45 milliseconds

12