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
269 stars 146 forks source link

Fix check GC #25

Closed xractor closed 4 years ago

xractor commented 5 years ago

Check GC is required after getting a free block from the free block pool. However, we do not check GC after getting a free block in the pool for GC write frontier. To fix this issue, this patch add check_gc_required() after assigning a new GC write frontier block.

arashta commented 4 years ago

Thanks for the update! It looks good to me.