summaryrefslogtreecommitdiff
path: root/sys/src/9/port/sdnvme.c
AgeCommit message (Collapse)Author
2022-10-23sdnvme: fix missing unlock() in submit queue full casecinap_lenrek
when we have more processors than submit queues, the submit queues are shared between some processors and hence we have to acquire its lock. in the case of the submit queue being full, we have to unlock it again before retrying otherwise we have a deadlock. sorry :(
2022-09-18sdnvme: avoid "empty if body" warningcinap_lenrek
dmaflush() is a no-op macro on amd64, so wrap all calls into {} braces to avoid the compiler warning.
2022-08-26sdnvme: correct mode/serial/firmware string lengthsSigrid Solveig Haflínudóttir
2022-07-03sdnvme: add dmaflush() instructions, move to port/cinap_lenrek