From: Anthony Gutierrez Date: Thu, 20 Sep 2012 21:25:52 +0000 (-0400) Subject: bus: removed outdated warn regarding 64 B block sizes X-Git-Tag: stable_2013_06_16~405 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9cd0c5ecc896690d923d443f3d419a05aec79ac1;p=gem5.git bus: removed outdated warn regarding 64 B block sizes this warn is outdated as 64 B blocks are very common, and even the default size for some CPU types. E.g., arm_detailed. --- diff --git a/src/mem/bus.cc b/src/mem/bus.cc index 75ece9bc8..ba45bfcb5 100644 --- a/src/mem/bus.cc +++ b/src/mem/bus.cc @@ -483,8 +483,8 @@ BaseBus::findBlockSize() if (max_bs == 0) max_bs = defaultBlockSize; - if (max_bs != 64) - warn_once("Blocksize found to not be 64... hmm... probably not.\n"); + if (max_bs != 64 && max_bs != 32) + warn_once("Blocksize found to not be 32 or 64... hmm... probably not.\n"); cachedBlockSize = max_bs; cachedBlockSizeValid = true; return max_bs;