From 3acc6af5c20ffbaf7f5dea5d9c1cabe9ec500edc Mon Sep 17 00:00:00 2001 From: Giacomo Travaglini Date: Fri, 5 Mar 2021 14:00:40 +0000 Subject: [PATCH] configs: NVM missing the xor_low_bit argument in create_mem_intf Change-Id: Ie197cec1eaa82ca61a6bbb82c33307a16d779dbd Signed-off-by: Giacomo Travaglini Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/42321 Reviewed-by: Daniel Carvalho Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- configs/common/MemConfig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/common/MemConfig.py b/configs/common/MemConfig.py index 6e78be5291..b8907c0ac7 100644 --- a/configs/common/MemConfig.py +++ b/configs/common/MemConfig.py @@ -200,7 +200,7 @@ def config_mem(options, system): if opt_mem_type and (not opt_nvm_type or range_iter % 2 != 0): # Create the DRAM interface dram_intf = create_mem_intf(intf, r, i, nbr_mem_ctrls, - intlv_bits, intlv_size, opt_xor_low_bit) + intlv_bits, intlv_size, opt_xor_low_bit) # Set the number of ranks based on the command-line # options if it was explicitly set @@ -241,7 +241,7 @@ def config_mem(options, system): elif opt_nvm_type and (not opt_mem_type or range_iter % 2 == 0): nvm_intf = create_mem_intf(n_intf, r, i, nbr_mem_ctrls, - intlv_bits, intlv_size) + intlv_bits, intlv_size, opt_xor_low_bit) # Set the number of ranks based on the command-line # options if it was explicitly set if issubclass(n_intf, m5.objects.NVMInterface) and \