Fix error messages in cut and pasted code.
Also, fix an unnecessary deref to get ctrlr. Noticed by: rpokala@ Sponsored by: Netflix
This commit is contained in:
parent
35688b25ae
commit
354a82d881
@ -519,12 +519,12 @@ nvme_ctrlr_destroy_qpair(struct nvme_controller *ctrlr, struct nvme_qpair *qpair
|
|||||||
struct nvme_completion_poll_status status;
|
struct nvme_completion_poll_status status;
|
||||||
|
|
||||||
status.done = 0;
|
status.done = 0;
|
||||||
nvme_ctrlr_cmd_delete_io_sq(qpair->ctrlr, qpair,
|
nvme_ctrlr_cmd_delete_io_sq(ctrlr, qpair,
|
||||||
nvme_completion_poll_cb, &status);
|
nvme_completion_poll_cb, &status);
|
||||||
while (!atomic_load_acq_int(&status.done))
|
while (!atomic_load_acq_int(&status.done))
|
||||||
pause("nvme", 1);
|
pause("nvme", 1);
|
||||||
if (nvme_completion_is_error(&status.cpl)) {
|
if (nvme_completion_is_error(&status.cpl)) {
|
||||||
nvme_printf(ctrlr, "nvme_create_io_sq failed!\n");
|
nvme_printf(ctrlr, "nvme_destroy_io_sq failed!\n");
|
||||||
return (ENXIO);
|
return (ENXIO);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -534,7 +534,7 @@ nvme_ctrlr_destroy_qpair(struct nvme_controller *ctrlr, struct nvme_qpair *qpair
|
|||||||
while (!atomic_load_acq_int(&status.done))
|
while (!atomic_load_acq_int(&status.done))
|
||||||
pause("nvme", 1);
|
pause("nvme", 1);
|
||||||
if (nvme_completion_is_error(&status.cpl)) {
|
if (nvme_completion_is_error(&status.cpl)) {
|
||||||
nvme_printf(ctrlr, "nvme_create_io_cq failed!\n");
|
nvme_printf(ctrlr, "nvme_destroy_io_cq failed!\n");
|
||||||
return (ENXIO);
|
return (ENXIO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user