Lines Matching refs:reply

104     MPI2_EVENT_NOTIFICATION_REPLY *reply);
397 mps_request_sync(struct mps_softc *sc, void *req, MPI2_DEFAULT_REPLY *reply, in mps_request_sync() argument
449 data16 = (uint16_t *)reply; in mps_request_sync()
466 ioc_sz = reply->MsgLength; in mps_request_sync()
546 MPI2_DEFAULT_REPLY *reply; in mps_get_iocfacts() local
554 reply = (MPI2_DEFAULT_REPLY *)facts; in mps_get_iocfacts()
558 error = mps_request_sync(sc, &request, reply, req_sz, reply_sz, 5); in mps_get_iocfacts()
567 MPI2_PORT_FACTS_REPLY *reply; in mps_get_portfacts() local
581 reply = (MPI2_PORT_FACTS_REPLY *)cm->cm_reply; in mps_get_portfacts()
582 if (reply == NULL) { in mps_get_portfacts()
586 if ((reply->IOCStatus & MPI2_IOCSTATUS_MASK) != MPI2_IOCSTATUS_SUCCESS) { in mps_get_portfacts()
589 __func__, error, reply->IOCStatus, reply->IOCLogInfo, in mps_get_portfacts()
590 reply->PortType); in mps_get_portfacts()
593 bcopy(reply, facts, sizeof(MPI2_PORT_FACTS_REPLY)); in mps_get_portfacts()
604 MPI2_DEFAULT_REPLY reply; in mps_send_iocinit() local
612 bzero(&reply, reply_sz); in mps_send_iocinit()
637 error = mps_request_sync(sc, &init, &reply, req_sz, reply_sz, 5); in mps_send_iocinit()
638 if ((reply.IOCStatus & MPI2_IOCSTATUS_MASK) != MPI2_IOCSTATUS_SUCCESS) in mps_send_iocinit()
641 mps_dprint(sc, MPS_INFO, "IOCInit status= 0x%x\n", reply.IOCStatus); in mps_send_iocinit()
1522 uint8_t *reply; in mps_intr_locked() local
1534 reply = sc->reply_frames + in mps_intr_locked()
1542 if ((reply < sc->reply_frames) in mps_intr_locked()
1543 || (reply > (sc->reply_frames + in mps_intr_locked()
1546 __func__, reply); in mps_intr_locked()
1555 if (((MPI2_DEFAULT_REPLY *)reply)->Function == in mps_intr_locked()
1565 (MPI2_DIAG_RELEASE_REPLY *)reply; in mps_intr_locked()
1580 reply); in mps_intr_locked()
1583 cm->cm_reply = reply; in mps_intr_locked()
1619 MPI2_EVENT_NOTIFICATION_REPLY *reply) in mps_dispatch_event() argument
1624 event = reply->Event; in mps_dispatch_event()
1627 eh->callback(sc, data, reply); in mps_dispatch_event()
1686 MPI2_EVENT_NOTIFICATION_REPLY *reply; in mps_update_events() local
1721 reply = (MPI2_EVENT_NOTIFICATION_REPLY *)cm->cm_reply; in mps_update_events()
1722 if ((reply == NULL) || in mps_update_events()
1723 (reply->IOCStatus & MPI2_IOCSTATUS_MASK) != MPI2_IOCSTATUS_SUCCESS) in mps_update_events()
1725 mps_print_event(sc, reply); in mps_update_events()
2244 MPI2_CONFIG_REPLY *reply; in mps_config_complete() local
2264 reply = (MPI2_CONFIG_REPLY *)cm->cm_reply; in mps_config_complete()
2265 if (reply == NULL) { in mps_config_complete()
2269 params->status = reply->IOCStatus; in mps_config_complete()
2271 params->hdr.Ext.ExtPageType = reply->ExtPageType; in mps_config_complete()
2272 params->hdr.Ext.ExtPageLength = reply->ExtPageLength; in mps_config_complete()
2274 params->hdr.Struct.PageType = reply->Header.PageType; in mps_config_complete()
2275 params->hdr.Struct.PageNumber = reply->Header.PageNumber; in mps_config_complete()
2276 params->hdr.Struct.PageLength = reply->Header.PageLength; in mps_config_complete()
2277 params->hdr.Struct.PageVersion = reply->Header.PageVersion; in mps_config_complete()