mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
cam: report sct/sc in that order
This should have no effect on scripting, but when reading it, sct/sc is the natural order of things (and the order we print them in elsewhere). Report them in that order. Sponsored by: Netflix
This commit is contained in:
parent
3514f98940
commit
5e5e4e1cf0
1 changed files with 3 additions and 3 deletions
|
|
@ -2166,9 +2166,9 @@ cam_periph_devctl_notify(union ccb *ccb)
|
|||
{
|
||||
struct ccb_nvmeio *n = &ccb->nvmeio;
|
||||
|
||||
sbuf_printf(&sb, "sc=\"%02x\" sct=\"%02x\" cdw0=\"%08x\" ",
|
||||
NVME_STATUS_GET_SC(n->cpl.status),
|
||||
NVME_STATUS_GET_SCT(n->cpl.status), n->cpl.cdw0);
|
||||
sbuf_printf(&sb, "sct=\"%02x\" sc=\"%02x\" cdw0=\"%08x\" ",
|
||||
NVME_STATUS_GET_SCT(n->cpl.status),
|
||||
NVME_STATUS_GET_SC(n->cpl.status), n->cpl.cdw0);
|
||||
type = "error";
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue