CMU-SAFARI / MQSim

MQSim is a fast and accurate simulator modeling the performance of modern multi-queue (MQ) SSDs as well as traditional SATA based SSDs. MQSim faithfully models new high-bandwidth protocol implementations, steady-state SSD conditions, and the full end-to-end latency of requests in modern SSDs. It is described in detail in the FAST 2018 paper by Arash Tavakkol et al., "MQSim: A Framework for Enabling Realistic Studies of Modern Multi-Queue SSD Devices" (https://people.inf.ethz.ch/omutlu/pub/MQSim-SSD-simulation-framework_fast18.pdf)
https://people.inf.ethz.ch/omutlu/pub/MQSim-SSD-simulation-framework_fast18.pdf
MIT License
268 stars 144 forks source link

Various bug fixes #43

Open yunchih opened 3 years ago

yunchih commented 3 years ago

fix wrong average queue waiting time

The value will explode when there is actually no requests destined for that queue. Should do a sanity check

cache manager

prevent garbage address when reading unwritten page

if the user attempts to read a page that has never been written before, its LPA might be overwritten by NO_LPA. Check this corner case