Skip to content
This repository has been archived by the owner on Aug 13, 2019. It is now read-only.

Commit

Permalink
Merge pull request #301 from Gouthamve/fix-prom-3957
Browse files Browse the repository at this point in the history
Use the right sized byte array for large indexes
  • Loading branch information
gouthamve authored Mar 14, 2018
2 parents 7a62f6a + fb65e3d commit 902e1ff
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions fileutil/mmap_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,16 @@ import (
"unsafe"
)

func mmap(f *os.File, sz int) ([]byte, error) {
low, high := uint32(sz), uint32(sz>>32)
const maxMapSize = 0xFFFFFFFFFFFF // 256TB

func mmap(f *os.File, size int) ([]byte, error) {
low, high := uint32(size), uint32(size>>32)
h, errno := syscall.CreateFileMapping(syscall.Handle(f.Fd()), nil, syscall.PAGE_READONLY, high, low, nil)
if h == 0 {
return nil, os.NewSyscallError("CreateFileMapping", errno)
}

addr, errno := syscall.MapViewOfFile(h, syscall.FILE_MAP_READ, 0, 0, uintptr(sz))
addr, errno := syscall.MapViewOfFile(h, syscall.FILE_MAP_READ, 0, 0, uintptr(size))
if addr == 0 {
return nil, os.NewSyscallError("MapViewOfFile", errno)
}
Expand All @@ -35,7 +37,7 @@ func mmap(f *os.File, sz int) ([]byte, error) {
return nil, os.NewSyscallError("CloseHandle", err)
}

return (*[1 << 30]byte)(unsafe.Pointer(addr))[:sz], nil
return (*[maxMapSize]byte)(unsafe.Pointer(addr))[:size], nil
}

func munmap(b []byte) error {
Expand Down

0 comments on commit 902e1ff

Please sign in to comment.