mirror of
				https://github.com/paboyle/Grid.git
				synced 2025-11-04 05:54:32 +00:00 
			
		
		
		
	CPU open doesn't need to free space
This commit is contained in:
		@@ -404,9 +404,10 @@ uint64_t MemoryManager::CpuViewOpen(uint64_t CpuPtr,size_t bytes,ViewMode mode,V
 | 
			
		||||
  auto AccCacheIterator = EntryLookup(CpuPtr);
 | 
			
		||||
  auto & AccCache = AccCacheIterator->second;
 | 
			
		||||
 | 
			
		||||
  if (!AccCache.AccPtr) {
 | 
			
		||||
    EvictVictims(bytes);
 | 
			
		||||
  }
 | 
			
		||||
  // CPU doesn't need to free space
 | 
			
		||||
  //  if (!AccCache.AccPtr) {
 | 
			
		||||
  //    EvictVictims(bytes);
 | 
			
		||||
  //  }
 | 
			
		||||
 | 
			
		||||
  assert((mode==CpuRead)||(mode==CpuWrite));
 | 
			
		||||
  assert(AccCache.accLock==0);  // Programming error
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user