Skip to content

Commit

Permalink
cache_ctrl: Do not accept new request during flush (#1677)
Browse files Browse the repository at this point in the history
  • Loading branch information
niwis authored Dec 6, 2023
1 parent abf55c0 commit 8ef0d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/cache_subsystem/cache_ctrl.sv
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ module cache_ctrl
req_port_o.data_rvalid = ~mem_req_q.killed;
req_port_o.data_rdata = critical_word_i;
// we can make another request
if (req_port_i.data_req) begin
if (req_port_i.data_req && !flush_i) begin
// save index, be and we
mem_req_d.index = req_port_i.address_index;
mem_req_d.id = req_port_i.data_id;
Expand Down

0 comments on commit 8ef0d66

Please sign in to comment.