Hi,
In mem_ctrl.cc, when a write request arrives at the memory controller, in
"addToWriteQueue" function we check if an existing request to the same
address is in the writeQueue to whether we can merge them together:
bool merged = isInWriteQueue.find(burstAlign(addr)) !=
isInWriteQueue.end();
But I cannot see any piece of code which actually merge these two requests.
Shouldn't the later request override the data of the earlier request?
Thanks,
Mohammad
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev