Commit d0f58fe6 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Gofmt.

parent 3aed656d
......@@ -109,8 +109,8 @@ func AnalyzeBenchmarkRuns(label string, times []float64) {
"avg %.3fms +/- %.0f%% "+
"median %.3fms, 10%%tiles: [-%.0f%%, +%.0f%%]\n",
label,
len(times), avg, 100.0 * 2*stddev/avg,
median, 100*(median - perc10)/median, 100*(perc90-median)/median)
len(times), avg, 100.0*2*stddev/avg,
median, 100*(median-perc10)/median, 100*(perc90-median)/median)
}
func RunBulkStat(runs int, threads int, sleepTime time.Duration, files []string) (results []float64) {
......
......@@ -144,7 +144,6 @@ type PathNodeFsOptions struct {
ClientInodes bool
}
// A File object should be returned from FileSystem.Open and
// FileSystem.Create. Include DefaultFile into the struct to inherit
// a default null implementation.
......
......@@ -17,7 +17,7 @@ func CopyFile(srcFs, destFs FileSystem, srcFile, destFile string, context *Conte
return code
}
dst, code := destFs.Create(destFile, uint32(os.O_WRONLY | os.O_CREATE | os.O_TRUNC), attr.Mode, context)
dst, code := destFs.Create(destFile, uint32(os.O_WRONLY|os.O_CREATE|os.O_TRUNC), attr.Mode, context)
if !code.Ok() {
return code
}
......
......@@ -23,7 +23,7 @@ func (f *MutableDataFile) String() string {
}
func (f *MutableDataFile) Read(buf []byte, off int64) (ReadResult, Status) {
end := int(off)+len(buf)
end := int(off) + len(buf)
if end > len(f.data) {
end = len(f.data)
}
......@@ -158,7 +158,7 @@ func TestDataReadLarge(t *testing.T) {
dir, clean := setupFAttrTest(t, fs)
defer clean()
content := RandomData(385*1023)
content := RandomData(385 * 1023)
fn := dir + "/file"
err := ioutil.WriteFile(fn, []byte(content), 0644)
CheckSuccess(err)
......@@ -168,7 +168,6 @@ func TestDataReadLarge(t *testing.T) {
CompareSlices(t, back, content)
}
func TestFSetAttr(t *testing.T) {
fs := &FSetAttrFs{}
dir, clean := setupFAttrTest(t, fs)
......@@ -215,4 +214,3 @@ func TestFSetAttr(t *testing.T) {
}
// TODO - test chown if run as root.
}
......@@ -121,7 +121,7 @@ func TestTouch(t *testing.T) {
ts := NewTestCase(t)
defer ts.Cleanup()
contents := []byte{1,2,3}
contents := []byte{1, 2, 3}
err := ioutil.WriteFile(ts.origFile, []byte(contents), 0700)
CheckSuccess(err)
err = os.Chtimes(ts.mountFile, time.Unix(42, 0), time.Unix(43, 0))
......@@ -167,7 +167,7 @@ func TestRemove(t *testing.T) {
tc := NewTestCase(t)
defer tc.Cleanup()
contents := []byte{1,2,3}
contents := []byte{1, 2, 3}
err := ioutil.WriteFile(tc.origFile, []byte(contents), 0700)
CheckSuccess(err)
......@@ -324,7 +324,7 @@ func TestSymlink(t *testing.T) {
defer tc.Cleanup()
t.Log("testing symlink/readlink.")
contents := []byte{1,2,3}
contents := []byte{1, 2, 3}
err := ioutil.WriteFile(tc.origFile, []byte(contents), 0700)
CheckSuccess(err)
......@@ -355,7 +355,7 @@ func TestRename(t *testing.T) {
tc := NewTestCase(t)
defer tc.Cleanup()
contents := []byte{1,2,3}
contents := []byte{1, 2, 3}
err := ioutil.WriteFile(tc.origFile, []byte(contents), 0700)
CheckSuccess(err)
sd := tc.mnt + "/testRename"
......@@ -434,7 +434,7 @@ func TestAccess(t *testing.T) {
tc := NewTestCase(t)
defer tc.Cleanup()
contents := []byte{1,2,3}
contents := []byte{1, 2, 3}
err := ioutil.WriteFile(tc.origFile, []byte(contents), 0700)
CheckSuccess(err)
err = os.Chmod(tc.origFile, 0)
......@@ -473,7 +473,7 @@ func TestReaddir(t *testing.T) {
tc := NewTestCase(t)
defer tc.Cleanup()
contents := []byte{1,2,3}
contents := []byte{1, 2, 3}
err := ioutil.WriteFile(tc.origFile, []byte(contents), 0700)
CheckSuccess(err)
err = os.Mkdir(tc.origSubdir, 0777)
......@@ -506,7 +506,7 @@ func TestFSync(t *testing.T) {
tc := NewTestCase(t)
defer tc.Cleanup()
contents := []byte{1,2,3}
contents := []byte{1, 2, 3}
err := ioutil.WriteFile(tc.origFile, []byte(contents), 0700)
CheckSuccess(err)
......@@ -576,7 +576,7 @@ func TestReadLargeMemCheck(t *testing.T) {
ts := NewTestCase(t)
defer ts.Cleanup()
content := RandomData(385*1023)
content := RandomData(385 * 1023)
err := ioutil.WriteFile(ts.origFile, []byte(content), 0644)
CheckSuccess(err)
......@@ -598,7 +598,7 @@ func TestReadLargeMemCheck(t *testing.T) {
}
runtime.ReadMemStats(&after)
delta := int((after.TotalAlloc - before.TotalAlloc))
delta = (delta - 40000)/ N
delta = (delta - 40000) / N
limit := 5000
if delta > limit {
......@@ -610,7 +610,7 @@ func TestReadLarge(t *testing.T) {
ts := NewTestCase(t)
defer ts.Cleanup()
content := RandomData(385*1023)
content := RandomData(385 * 1023)
err := ioutil.WriteFile(ts.origFile, []byte(content), 0644)
CheckSuccess(err)
......
......@@ -477,6 +477,7 @@ func (ms *MountState) writeEntryNotify(parent uint64, name string) Status {
}
var defaultBufferPool BufferPool
func init() {
defaultBufferPool = NewBufferPool()
}
......@@ -5,8 +5,6 @@ import (
"syscall"
)
// ReadResultData is the read return for returning bytes directly.
type ReadResultData struct {
// Raw bytes for the read.
......@@ -53,4 +51,3 @@ func (r *ReadResultFd) Bytes(buf []byte) []byte {
func (r *ReadResultFd) Size() int {
return r.Sz
}
......@@ -48,4 +48,3 @@ type Owner raw.Owner
type Context raw.Context
type StatfsOut raw.StatfsOut
......@@ -15,7 +15,6 @@ var accessFlagName map[int]string
var writeFlagNames map[int]string
var readFlagNames map[int]string
func init() {
writeFlagNames = map[int]string{
WRITE_CACHE: "CACHE",
......
......@@ -63,7 +63,8 @@ func (me *pairPool) get() (p *Pair, err error) {
return newSplicePair()
}
var discardBuffer [32*1024]byte
var discardBuffer [32 * 1024]byte
func DiscardAll(r io.Reader) {
buf := discardBuffer[:]
for {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment