Closed rwk-unil closed 3 months ago
It seems that the error log confused you. Current error log message is somewhat misleading.
kv_ftl.c#L990 means that the performance model is not implemented for the specific opcode. This means that the nsecs_target == nsecs_start, and the command completion will happen when the actual delete operation finishes. (kv_ftl.c#L564).
Thank you, I understand, the error message was what was confusing me indeed.
I see now that this is for the performance logs (proc_io_cmd()
) and not for the execution of the commands (perform_io_cmd()
).
Thanks
Best regards, Rick
Hello, When running NVMeVirt with the KV SSD configuration I found out that the "delete" command was not implemented.
I receive the error message
command not implemented
from https://github.com/snu-csl/nvmevirt/blob/main/kv_ftl.c#L990I can see the code for
delete
does exist e.g., here https://github.com/snu-csl/nvmevirt/blob/main/kv_ftl.c#L564Is there a reason why the delete command is not supported ? Does the delete code work ?
For example one could add the following in
kv_ftl.c
:This will then call the delete code, is there a reason it is not activated ? Is is possible the delete code has a bug or would generate issues on the PC running the NVMeVirt module ?
Thank you very much. Regards, Rick