Searched refs:resp_hdr (Results 1 – 9 of 9) sorted by relevance
/linux-4.4.14/drivers/scsi/bnx2i/ |
D | bnx2i_hwi.c | 1457 struct iscsi_login_rsp *resp_hdr; in bnx2i_process_login_resp() local 1468 resp_hdr = (struct iscsi_login_rsp *) &bnx2i_conn->gen_pdu.resp_hdr; in bnx2i_process_login_resp() 1469 memset(resp_hdr, 0, sizeof(struct iscsi_hdr)); in bnx2i_process_login_resp() 1470 resp_hdr->opcode = login->op_code; in bnx2i_process_login_resp() 1471 resp_hdr->flags = login->response_flags; in bnx2i_process_login_resp() 1472 resp_hdr->max_version = login->version_max; in bnx2i_process_login_resp() 1473 resp_hdr->active_version = login->version_active; in bnx2i_process_login_resp() 1474 resp_hdr->hlength = 0; in bnx2i_process_login_resp() 1476 hton24(resp_hdr->dlength, login->data_length); in bnx2i_process_login_resp() 1477 memcpy(resp_hdr->isid, &login->isid_lo, 6); in bnx2i_process_login_resp() [all …]
|
D | bnx2i.h | 200 struct iscsi_hdr resp_hdr; member
|
/linux-4.4.14/net/nfc/nci/ |
D | spi.c | 189 unsigned char req[2], resp_hdr[2]; in __nci_spi_read() local 206 rx.rx_buf = resp_hdr; in __nci_spi_read() 217 rx_len = ((resp_hdr[0] & NCI_SPI_MSB_PAYLOAD_MASK) << 8) + in __nci_spi_read() 218 resp_hdr[1] + NCI_SPI_CRC_LEN; in __nci_spi_read() 220 rx_len = (resp_hdr[0] << 8) | resp_hdr[1]; in __nci_spi_read() 241 *skb_push(skb, 1) = resp_hdr[1]; in __nci_spi_read() 242 *skb_push(skb, 1) = resp_hdr[0]; in __nci_spi_read()
|
/linux-4.4.14/Documentation/misc-devices/mei/ |
D | mei-amt-version.c | 348 const struct amt_host_if_msg_header *resp_hdr, in amt_verify_response_header() argument 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()
|
/linux-4.4.14/drivers/net/ethernet/emulex/benet/ |
D | be_cmds.c | 159 struct be_cmd_resp_hdr *resp_hdr) in be_async_cmd_process() argument 164 if (resp_hdr) { in be_async_cmd_process() 165 opcode = resp_hdr->opcode; in be_async_cmd_process() 166 subsystem = resp_hdr->subsystem; in be_async_cmd_process() 202 (void *)resp_hdr; in be_async_cmd_process() 219 struct be_cmd_resp_hdr *resp_hdr; in be_mcc_compl_process() local 229 resp_hdr = be_decode_resp_hdr(compl->tag0, compl->tag1); in be_mcc_compl_process() 230 if (resp_hdr) { in be_mcc_compl_process() 231 opcode = resp_hdr->opcode; in be_mcc_compl_process() 232 subsystem = resp_hdr->subsystem; in be_mcc_compl_process() [all …]
|
D | be_cmds.h | 355 struct be_cmd_resp_hdr resp_hdr; member 1202 struct be_cmd_resp_hdr resp_hdr; member 1518 struct be_cmd_resp_hdr resp_hdr; member
|
/linux-4.4.14/drivers/scsi/be2iscsi/ |
D | be_cmds.c | 324 struct be_cmd_resp_hdr *resp_hdr; in be_mcc_compl_process() local 343 resp_hdr = (struct be_cmd_resp_hdr *) hdr; in be_mcc_compl_process() 344 if (resp_hdr->response_length) in be_mcc_compl_process()
|
D | be_cmds.h | 278 struct be_cmd_resp_hdr resp_hdr; member 875 struct be_cmd_resp_hdr resp_hdr; member
|
/linux-4.4.14/drivers/infiniband/core/ |
D | mad.c | 2072 struct ib_mad_hdr *resp_hdr = (struct ib_mad_hdr *)response->mad; in generate_unmatched_resp() local 2080 resp_hdr->method = IB_MGMT_METHOD_GET_RESP; in generate_unmatched_resp() 2081 resp_hdr->status = cpu_to_be16(IB_MGMT_MAD_STATUS_UNSUPPORTED_METHOD_ATTRIB); in generate_unmatched_resp() 2083 resp_hdr->status |= IB_SMP_DIRECTION; in generate_unmatched_resp()
|