| 106 | } |
| 107 | |
| 108 | memory::MachinePageCount AsyncDataCacheEntry::setPrefetch(bool flag) { |
| 109 | isPrefetch_ = flag; |
| 110 | const auto numPages = memory::AllocationTraits::numPages(size_); |
| 111 | return shard_->cache()->incrementPrefetchPages(flag ? numPages : -numPages); |
| 112 | } |
| 113 | |
| 114 | void AsyncDataCacheEntry::initialize(FileCacheKey key) { |
| 115 | BOLT_CHECK(isExclusive()); |