Avoid unnecessary conversions (#270)

pull/274/head
Makdon 2021-04-22 02:45:35 +08:00 committed by GitHub
parent 8c171443bc
commit 116fbcd490
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ import "sort"
// hashmapFreeCount returns count of free pages(hashmap version) // hashmapFreeCount returns count of free pages(hashmap version)
func (f *freelist) hashmapFreeCount() int { func (f *freelist) hashmapFreeCount() int {
// use the forwardmap to get the total count // use the forwardMap to get the total count
count := 0 count := 0
for _, size := range f.forwardMap { for _, size := range f.forwardMap {
count += int(size) count += int(size)
@ -41,7 +41,7 @@ func (f *freelist) hashmapAllocate(txid txid, n int) pgid {
for pid := range bm { for pid := range bm {
// remove the initial // remove the initial
f.delSpan(pid, uint64(size)) f.delSpan(pid, size)
f.allocs[pid] = txid f.allocs[pid] = txid
@ -51,7 +51,7 @@ func (f *freelist) hashmapAllocate(txid txid, n int) pgid {
f.addSpan(pid+pgid(n), remain) f.addSpan(pid+pgid(n), remain)
for i := pgid(0); i < pgid(n); i++ { for i := pgid(0); i < pgid(n); i++ {
delete(f.cache, pid+pgid(i)) delete(f.cache, pid+i)
} }
return pid return pid
} }