NVMe: add TODO comment suggested by @sdongles

This commit is contained in:
Abdur-Rahman Mansoor 2024-08-23 08:17:12 -04:00
parent 5f4fc14007
commit 088dbaed5f
Signed by: ramenu
GPG Key ID: 8D15FCF6795779C8

View File

@ -1136,6 +1136,12 @@ proc cqyhdbl_write stdcall, pci:dword, y:dword, cqh:dword
mov word [esi + edx], ax ; Write to CQyHDBL mov word [esi + edx], ax ; Write to CQyHDBL
mov word [edi + NVM_QUEUE_ENTRY.head], ax mov word [edi + NVM_QUEUE_ENTRY.head], ax
; NOTE: Currently commented out since we're just using
; plain spinlocks for notifying when a command has been
; completed, but this will be uncommented later and use
; semaphores instead of mutexes once the polling code
; has been replaced with the asynchronous API.
; Unlock the mutex now that the command is complete ; Unlock the mutex now that the command is complete
;mov edi, dword [edi + NVM_QUEUE_ENTRY.cmd_ptr] ;mov edi, dword [edi + NVM_QUEUE_ENTRY.cmd_ptr]
;mov ecx, [cqh] ;mov ecx, [cqh]