You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1.Created persistent discovery connection.
2.Created new subsystem.
3.Python Discovery controller tries to send Async event status to the host :
error occurs in python code in conversion from byte-list to the integer : async_reply.dword0 = b'\x02\xf0\x70\x00'
After fixing the error using async_reply.dword0 = int.from_bytes (b'\x02\xf0\x70\x00' , byteorder='little')
Controller does not crash but host doesnt receive KA response and reconnects. No Async Event status is seen in the tcpdump.
dmesg:
[Wed Nov 15 11:26:07 2023] nvme nvme0: unsupported pdu type (0)
[Wed Nov 15 11:26:07 2023] nvme nvme0: receive failed: -22
[Wed Nov 15 11:26:07 2023] nvme nvme0: starting error recovery
[Wed Nov 15 11:26:07 2023] nvme0: Keep Alive(0x18), Host Aborted Command (sct 0x3 / sc 0x71)
The text was updated successfully, but these errors were encountered:
1.Created persistent discovery connection.
2.Created new subsystem.
3.Python Discovery controller tries to send Async event status to the host :
error occurs in python code in conversion from byte-list to the integer : async_reply.dword0 = b'\x02\xf0\x70\x00'
After fixing the error using async_reply.dword0 = int.from_bytes (b'\x02\xf0\x70\x00' , byteorder='little')
Controller does not crash but host doesnt receive KA response and reconnects. No Async Event status is seen in the tcpdump.
dmesg:
[Wed Nov 15 11:26:07 2023] nvme nvme0: unsupported pdu type (0)
[Wed Nov 15 11:26:07 2023] nvme nvme0: receive failed: -22
[Wed Nov 15 11:26:07 2023] nvme nvme0: starting error recovery
[Wed Nov 15 11:26:07 2023] nvme0: Keep Alive(0x18), Host Aborted Command (sct 0x3 / sc 0x71)
The text was updated successfully, but these errors were encountered: