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
I have this error when trying to run my code with FTL_DESIGN = 0 and FTL_DESIGN=3.
You are trying to read logical address 318838, but this address does not have a corresponding physical page in the mapping table.
It is most likely that nothing has been written to this address so far.
demo: FTLs/page_ftl.cpp:112: virtual void ssd::FtlImpl_Page::set_read_address(ssd::Event&) const: Assertion `false' failed.
can you help me to solve this issue?
The text was updated successfully, but these errors were encountered:
Hello. This isn't actually a bug. As the message says, you are trying to read logical address 318838. The FTL is warning you that you have not written anything on this address before, so there is nothing to read. You can either comment out the assertion in FTLs/page_ftl.cpp:112. Or you can make sure you issue a write to logical address 318838 first.
I have this error when trying to run my code with FTL_DESIGN = 0 and FTL_DESIGN=3.
You are trying to read logical address 318838, but this address does not have a corresponding physical page in the mapping table.
It is most likely that nothing has been written to this address so far.
demo: FTLs/page_ftl.cpp:112: virtual void ssd::FtlImpl_Page::set_read_address(ssd::Event&) const: Assertion `false' failed.
can you help me to solve this issue?
The text was updated successfully, but these errors were encountered: