From 942979162a4eb6e841e3b87e1e182b8ff32f0519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20M=C3=BCck?= <11845661+tiagormk@users.noreply.github.com> Date: Mon, 11 Mar 2024 10:32:11 -0500 Subject: [PATCH] READ_MODIFY_WRITE flag fix (#922) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change bit for Request::READ_MODIFY_WRITE, which was the same as Request::ACQUIRE. Signed-off-by: Tiago Mück --- src/mem/request.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mem/request.hh b/src/mem/request.hh index 5e359febf7..783e4212ab 100644 --- a/src/mem/request.hh +++ b/src/mem/request.hh @@ -158,7 +158,7 @@ class Request : public Extensible MEM_SWAP = 0x00400000, MEM_SWAP_COND = 0x00800000, /** This request is a read which will be followed by a write. */ - READ_MODIFY_WRITE = 0x00020000, + READ_MODIFY_WRITE = 0x0020000000000000, /** The request is a prefetch. */ PREFETCH = 0x01000000,