From 116fbcd49033a24a1925e56001fa772b5cbec435 Mon Sep 17 00:00:00 2001 From: Makdon Date: Thu, 22 Apr 2021 02:45:35 +0800 Subject: [PATCH] Avoid unnecessary conversions (#270) --- freelist_hmap.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/freelist_hmap.go b/freelist_hmap.go index 02ef2be..dbd67a1 100644 --- a/freelist_hmap.go +++ b/freelist_hmap.go @@ -4,7 +4,7 @@ import "sort" // hashmapFreeCount returns count of free pages(hashmap version) func (f *freelist) hashmapFreeCount() int { - // use the forwardmap to get the total count + // use the forwardMap to get the total count count := 0 for _, size := range f.forwardMap { count += int(size) @@ -41,7 +41,7 @@ func (f *freelist) hashmapAllocate(txid txid, n int) pgid { for pid := range bm { // remove the initial - f.delSpan(pid, uint64(size)) + f.delSpan(pid, size) f.allocs[pid] = txid @@ -51,7 +51,7 @@ func (f *freelist) hashmapAllocate(txid txid, n int) pgid { f.addSpan(pid+pgid(n), remain) for i := pgid(0); i < pgid(n); i++ { - delete(f.cache, pid+pgid(i)) + delete(f.cache, pid+i) } return pid }