Lines Matching refs:response
424 struct islpci_mgmtframe *response = NULL; in mgt_set_request() local
458 _data, dlen, &response); in mgt_set_request()
460 response_op = response->header->operation; in mgt_set_request()
461 islpci_mgt_release(response); in mgt_set_request()
486 struct islpci_mgmtframe *response; in mgt_set_varlen() local
500 data, dlen + extra_len, &response); in mgt_set_varlen()
502 response_op = response->header->operation; in mgt_set_varlen()
503 islpci_mgt_release(response); in mgt_set_varlen()
524 struct islpci_mgmtframe *response = NULL; in mgt_get_request() local
550 oid, data, dlen, &response); in mgt_get_request()
551 if (ret || !response || in mgt_get_request()
552 response->header->operation == PIMFOR_OP_ERROR) { in mgt_get_request()
553 if (response) in mgt_get_request()
554 islpci_mgt_release(response); in mgt_get_request()
558 _res = response->data; in mgt_get_request()
559 reslen = response->header->length; in mgt_get_request()
581 if (response && !ret) in mgt_get_request()
582 islpci_mgt_release(response); in mgt_get_request()
598 struct islpci_mgmtframe *response; in mgt_commit_list() local
609 &response); in mgt_commit_list()
610 if (response) { in mgt_commit_list()
611 r |= (response->header->operation == PIMFOR_OP_ERROR); in mgt_commit_list()
612 islpci_mgt_release(response); in mgt_commit_list()