Lines Matching refs:cfgp

507 			MSG_CONFIG *cfgp;  in mpt_config_reply_handler()  local
510 cfgp = (MSG_CONFIG *)req->req_vbuf; in mpt_config_reply_handler()
513 bcopy(&reply->Header, &cfgp->Header, in mpt_config_reply_handler()
514 sizeof(cfgp->Header)); in mpt_config_reply_handler()
515 cfgp->ExtPageLength = reply->ExtPageLength; in mpt_config_reply_handler()
516 cfgp->ExtPageType = reply->ExtPageType; in mpt_config_reply_handler()
1581 MSG_CONFIG *cfgp; in mpt_issue_cfg_req() local
1584 cfgp = req->req_vbuf; in mpt_issue_cfg_req()
1585 memset(cfgp, 0, sizeof *cfgp); in mpt_issue_cfg_req()
1586 cfgp->Action = params->Action; in mpt_issue_cfg_req()
1587 cfgp->Function = MPI_FUNCTION_CONFIG; in mpt_issue_cfg_req()
1588 cfgp->Header.PageVersion = params->PageVersion; in mpt_issue_cfg_req()
1589 cfgp->Header.PageNumber = params->PageNumber; in mpt_issue_cfg_req()
1590 cfgp->PageAddress = htole32(params->PageAddress); in mpt_issue_cfg_req()
1593 cfgp->Header.PageType = MPI_CONFIG_PAGETYPE_EXTENDED; in mpt_issue_cfg_req()
1594 cfgp->Header.PageLength = 0; in mpt_issue_cfg_req()
1595 cfgp->ExtPageLength = htole16(params->ExtPageLength); in mpt_issue_cfg_req()
1596 cfgp->ExtPageType = params->ExtPageType; in mpt_issue_cfg_req()
1598 cfgp->Header.PageType = params->PageType; in mpt_issue_cfg_req()
1599 cfgp->Header.PageLength = params->PageLength; in mpt_issue_cfg_req()
1601 se = (SGE_SIMPLE32 *)&cfgp->PageBufferSGE; in mpt_issue_cfg_req()
1611 cfgp->MsgContext = htole32(req->index | MPT_REPLY_HANDLER_CONFIG); in mpt_issue_cfg_req()
1627 MSG_CONFIG_REPLY *cfgp; in mpt_read_extcfg_header() local
1659 cfgp = req->req_vbuf; in mpt_read_extcfg_header()
1660 rslt->PageVersion = cfgp->Header.PageVersion; in mpt_read_extcfg_header()
1661 rslt->PageNumber = cfgp->Header.PageNumber; in mpt_read_extcfg_header()
1662 rslt->PageType = cfgp->Header.PageType; in mpt_read_extcfg_header()
1663 rslt->ExtPageLength = le16toh(cfgp->ExtPageLength); in mpt_read_extcfg_header()
1664 rslt->ExtPageType = cfgp->ExtPageType; in mpt_read_extcfg_header()
1732 MSG_CONFIG *cfgp; in mpt_read_cfg_header() local
1762 cfgp = req->req_vbuf; in mpt_read_cfg_header()
1763 bcopy(&cfgp->Header, rslt, sizeof(*rslt)); in mpt_read_cfg_header()