add large disk support

This commit is contained in:
Chris Lu
2019-04-08 22:32:42 -07:00
parent 784c5bb73a
commit 88ba08cb9e
7 changed files with 43 additions and 5 deletions

View File

@@ -1,5 +1,9 @@
package util
const (
VERSION = "1.28"
import (
"fmt"
)
var (
VERSION = fmt.Sprintf("%s %d.%d", sizeLimit, 1, 28)
)

View File

@@ -0,0 +1,8 @@
// +build !5BytesOffset
package util
const (
sizeLimit = "30GB"
VolumeSizeLimitGB = 30
)

View File

@@ -0,0 +1,8 @@
// +build 5BytesOffset
package util
const (
sizeLimit = "8000GB"
VolumeSizeLimitGB = 8000
)