Lines Matching defs:response
66 struct spdk_nvme_cpl *response = &req->rsp->nvme_cpl;
68 response->status.sct = sct;
69 response->status.sc = sc;
70 response->status.dnr = dnr;
347 uint8_t response[NVMF_AUTH_DIGEST_MAX_SIZE];
419 assert(hl <= sizeof(response) && hl <= sizeof(auth->cval));
424 auth->cval, response);
426 AUTH_ERRLOG(qpair, "failed to calculate challenge response: %s\n",
432 if (memcmp(msg->rval, response, hl) != 0) {
433 AUTH_ERRLOG(qpair, "challenge response mismatch\n");
434 AUTH_LOGDUMP("response:", msg->rval, hl);
435 AUTH_LOGDUMP("expected:", response, hl);
454 AUTH_ERRLOG(qpair, "failed to calculate ctrlr challenge response: %s\n",