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
And test fail because check VS register fail
tnvme:test.cpp:215: Reg val(0x0000000000010200) expect val(0x0000000000010000)
tnvme-err:frmwkEx.cpp:60: Exception: allCtrlRegs_r10b.cpp:#201: FAILURE: ctrlr version register (VS) RO bit #9 has incorrect value
It seem the program test revision is NVME 1.0.0
So how do i change or specify test revision to NVME 2.0 ?
Thanks
The text was updated successfully, but these errors were encountered:
I think what your looking for is something like:
-v="1.2"
Note: That syntax may be wrong for the flag but there is a flag
There is a spec revisions enum in tnvme.h
SPECREV_10b, // http://www.nvmexpress.org/ spec. rev. 1.0b
SPECREV_11, // http://www.nvmexpress.org/ spec. rev. 1.1
SPECREV_12, // http://www.nvmexpress.org/ spec. rev. 1.2
SPECREV_121, // http://www.nvmexpress.org/ spec. rev. 1.2.1
SPECREV_13, // http://www.nvmexpress.org/ spec. rev. 1.3
SPECREVTYPE_FENCE // always must be last element
} SpecRev;
Hi all,
My device is support NVME 1.2.0
I used command below:
sudo ./tnvme --test=1
And test fail because check VS register fail
tnvme:test.cpp:215: Reg val(0x0000000000010200) expect val(0x0000000000010000)
tnvme-err:frmwkEx.cpp:60: Exception: allCtrlRegs_r10b.cpp:#201: FAILURE: ctrlr version register (VS) RO bit #9 has incorrect value
It seem the program test revision is NVME 1.0.0
So how do i change or specify test revision to NVME 2.0 ?
Thanks
The text was updated successfully, but these errors were encountered: