make format
This commit is contained in:
parent
4808adc761
commit
003a7fa2e5
@ -1,4 +1,5 @@
|
||||
//+build linux
|
||||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
/*
|
||||
Small tool to try to debug unix.Getdents problems on CIFS mounts
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build go1.7
|
||||
// +build go1.7
|
||||
|
||||
// ^^^^^^^^^^^^ we use the "sub-benchmark" feature that was added in Go 1.7
|
||||
|
@ -65,7 +65,7 @@ func NewRootNode(args fusefrontend.Args, c *contentenc.ContentEnc, n *nametransf
|
||||
}
|
||||
|
||||
shortNameMax = n.GetLongNameMax() * 3 / 4
|
||||
shortNameMax = shortNameMax - shortNameMax % 16 - 1
|
||||
shortNameMax = shortNameMax - shortNameMax%16 - 1
|
||||
|
||||
rn := &RootNode{
|
||||
args: args,
|
||||
|
@ -38,7 +38,6 @@ func (n *VirtualConfNode) Getattr(ctx context.Context, fh fs.FileHandle, out *fu
|
||||
return 0
|
||||
}
|
||||
|
||||
|
||||
// Check that we have implemented the fs.File* interfaces
|
||||
var _ = (fs.FileReader)((*VirtualConfFile)(nil))
|
||||
var _ = (fs.FileReleaser)((*VirtualConfFile)(nil))
|
||||
|
@ -172,4 +172,4 @@ func Dir(path string) string {
|
||||
// this should be hashed.
|
||||
func (n *NameTransform) GetLongNameMax() int {
|
||||
return n.longNameMax
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !without_openssl
|
||||
// +build !without_openssl
|
||||
|
||||
package stupidgcm
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !without_openssl
|
||||
// +build !without_openssl
|
||||
|
||||
package stupidgcm
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !without_openssl
|
||||
// +build !without_openssl
|
||||
|
||||
package stupidgcm
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build cgo && !without_openssl
|
||||
// +build cgo,!without_openssl
|
||||
|
||||
package stupidgcm
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !without_openssl
|
||||
// +build !without_openssl
|
||||
|
||||
package stupidgcm
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !without_openssl
|
||||
// +build !without_openssl
|
||||
|
||||
// We compare against Go's built-in GCM implementation. Since stupidgcm only
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !without_openssl
|
||||
// +build !without_openssl
|
||||
|
||||
package stupidgcm
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !without_openssl
|
||||
// +build !without_openssl
|
||||
|
||||
package stupidgcm
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build without_openssl
|
||||
// +build without_openssl
|
||||
|
||||
package stupidgcm
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !without_openssl
|
||||
// +build !without_openssl
|
||||
|
||||
// Copyright 2018 The Go Authors. All rights reserved.
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !without_openssl
|
||||
// +build !without_openssl
|
||||
|
||||
package stupidgcm
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
package syscallcompat
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
package syscallcompat
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
package defaults
|
||||
|
@ -1,4 +1,5 @@
|
||||
//+build linux
|
||||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
// Package root_test contains tests that need root
|
||||
// permissions to run
|
||||
|
@ -1,4 +1,5 @@
|
||||
//+build linux
|
||||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
// Darwin does not support Fgetxattr and friends!
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user