Lines Matching refs:response
421 struct islpci_mgmtframe *response = NULL; in mgt_set_request() local
455 _data, dlen, &response); in mgt_set_request()
457 response_op = response->header->operation; in mgt_set_request()
458 islpci_mgt_release(response); in mgt_set_request()
483 struct islpci_mgmtframe *response; in mgt_set_varlen() local
497 data, dlen + extra_len, &response); in mgt_set_varlen()
499 response_op = response->header->operation; in mgt_set_varlen()
500 islpci_mgt_release(response); in mgt_set_varlen()
521 struct islpci_mgmtframe *response = NULL; in mgt_get_request() local
547 oid, data, dlen, &response); in mgt_get_request()
548 if (ret || !response || in mgt_get_request()
549 response->header->operation == PIMFOR_OP_ERROR) { in mgt_get_request()
550 if (response) in mgt_get_request()
551 islpci_mgt_release(response); in mgt_get_request()
555 _res = response->data; in mgt_get_request()
556 reslen = response->header->length; in mgt_get_request()
578 if (response && !ret) in mgt_get_request()
579 islpci_mgt_release(response); in mgt_get_request()
595 struct islpci_mgmtframe *response; in mgt_commit_list() local
606 &response); in mgt_commit_list()
607 if (response) { in mgt_commit_list()
608 r |= (response->header->operation == PIMFOR_OP_ERROR); in mgt_commit_list()
609 islpci_mgt_release(response); in mgt_commit_list()