arena.h: fix Arena::IsInInlineBlock() (#9317)

Summary:
When I enable hugepage on my box, unit test fails, this PR fixes this issue:

[  FAILED  ] ArenaTest.ApproximateMemoryUsage (1 ms)

memory/arena_test.cc:127: Failure
Value of: arena.IsInInlineBlock()
  Actual: true
Expected: false
arena.IsInInlineBlock() = 1
memory/arena_test.cc:127: Failure
Value of: arena.IsInInlineBlock()
  Actual: true
Expected: false

Pull Request resolved: https://github.com/facebook/rocksdb/pull/9317

Reviewed By: ajkr

Differential Revision: D36219813

fbshipit-source-id: 08d040d9f37ec4c16987e4150c2db876180d163d
main
leipeng 2 years ago committed by Facebook GitHub Bot
parent 7b55b50839
commit 9f7968b2ed
  1. 2
      memory/arena.h

@ -78,7 +78,7 @@ class Arena : public Allocator {
size_t BlockSize() const override { return kBlockSize; }
bool IsInInlineBlock() const {
return blocks_.empty();
return blocks_.empty() && huge_blocks_.empty();
}
private:

Loading…
Cancel
Save