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
8b1e6ebe0e
commit
5d7fd8f726
@ -519,12 +519,12 @@ nvme_ctrlr_destroy_qpair(struct nvme_controller *ctrlr, struct nvme_qpair *qpair
|
||||
struct nvme_completion_poll_status status;
|
||||
|
||||
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);
|
||||
while (!atomic_load_acq_int(&status.done))
|
||||
pause("nvme", 1);
|
||||
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);
|
||||
}
|
||||
|
||||
@ -534,7 +534,7 @@ nvme_ctrlr_destroy_qpair(struct nvme_controller *ctrlr, struct nvme_qpair *qpair
|
||||
while (!atomic_load_acq_int(&status.done))
|
||||
pause("nvme", 1);
|
||||
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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user