Lines Matching refs:fwreq

526 snic_icmnd_cmpl_handler(struct snic *snic, struct snic_fw_req *fwreq)
539 snic_io_hdr_dec(&fwreq->hdr, &typ, &hdr_stat, &cmnd_id, &hid, &ctx);
540 icmnd_cmpl = &fwreq->u.icmnd_cmpl;
560 "Icmnd_cmpl: Scsi Cmnd Not found, sc = NULL Hdr Status = %s tag = 0x%x fwreq = 0x%p\n",
563 fwreq);
568 (ulong) fwreq, le32_to_cpu(icmnd_cmpl->resid), ctx);
630 jiffies_to_msecs(jiffies - start_time), (ulong) fwreq,
656 jiffies_to_msecs(jiffies - start_time), (ulong) fwreq,
667 struct snic_fw_req *fwreq,
685 (ulong) fwreq, 0, SNIC_TRC_CMD_STATE_FLAGS(sc));
700 (ulong) fwreq, 0, SNIC_TRC_CMD_STATE_FLAGS(sc));
754 struct snic_fw_req *fwreq,
840 (ulong) fwreq, SNIC_TRC_CMD(sc),
849 snic_proc_dr_cmpl_locked(snic, fwreq, cmpl_stat, cmnd_id, sc);
898 snic_itmf_cmpl_handler(struct snic *snic, struct snic_fw_req *fwreq)
909 snic_io_hdr_dec(&fwreq->hdr, &typ, &hdr_stat, &cmnd_id, &hid, &ctx);
914 itmf_cmpl = &fwreq->u.itmf_cmpl;
949 snic_process_itmf_cmpl(snic, fwreq, cmnd_id, hdr_stat, sc);
980 snic_hba_reset_cmpl_handler(struct snic *snic, struct snic_fw_req *fwreq)
993 snic_io_hdr_dec(&fwreq->hdr, &typ, &hdr_stat, &cmnd_id, &hid, &ctx);
1100 snic_msg_ack_handler(struct snic *snic, struct snic_fw_req *fwreq)
1108 snic_aen_handler(struct snic *snic, struct snic_fw_req *fwreq)
1113 struct snic_async_evnotify *aen = &fwreq->u.async_ev;
1116 snic_io_hdr_dec(&fwreq->hdr, &typ, &hdr_stat, &cmnd_id, &hid, &ctx);
1180 struct snic_fw_req *fwreq)
1185 snic_print_desc(__func__, (char *)fwreq, sizeof(*fwreq));
1188 if ((fwreq->hdr.type >= SNIC_RSP_REPORT_TGTS_CMPL) &&
1189 (fwreq->hdr.type <= SNIC_RSP_BOOT_LUNS_CMPL))
1192 SNIC_BUG_ON((fwreq->hdr.type > SNIC_RSP_BOOT_LUNS_CMPL) &&
1193 (fwreq->hdr.type < SNIC_MSG_ASYNC_EVNOTIFY));
1196 switch (fwreq->hdr.status) {
1208 switch (fwreq->hdr.type) {
1210 snic_io_exch_ver_cmpl_handler(snic, fwreq);
1214 snic_report_tgt_cmpl_handler(snic, fwreq);
1218 snic_icmnd_cmpl_handler(snic, fwreq);
1222 snic_itmf_cmpl_handler(snic, fwreq);
1226 snic_hba_reset_cmpl_handler(snic, fwreq);
1230 snic_msg_ack_handler(snic, fwreq);
1234 snic_aen_handler(snic, fwreq);
1241 fwreq->hdr.type);