From b90bf473c104dc4970cf48161246ffb5ce8cdfa7 Mon Sep 17 00:00:00 2001 From: Sean Keely Date: Tue, 21 Apr 2020 19:03:24 -0500 Subject: [PATCH] Correct capture of PoolInfo::allocable_size_. Change-Id: I80757bb36048bc15b928220aca0a1eb5d898ab22 --- rocrtst/suites/performance/memory_async_copy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocrtst/suites/performance/memory_async_copy.h b/rocrtst/suites/performance/memory_async_copy.h index aedfdcc456..5ea8f393f5 100755 --- a/rocrtst/suites/performance/memory_async_copy.h +++ b/rocrtst/suites/performance/memory_async_copy.h @@ -112,7 +112,7 @@ class PoolInfo { segment_ = segment; is_fine_grained_ = is_fine_grained; size_ = size; - allocable_size_ = size; + allocable_size_ = max_alloc_size; owner_agent_info_ = agent_info; } PoolInfo() {}