Commit a63a983f authored by Ivan Krasin's avatar Ivan Krasin

bufeSize: mount.go -> fuse.go

parent 1bb5cc5e
...@@ -9,6 +9,10 @@ import ( ...@@ -9,6 +9,10 @@ import (
"os" "os"
) )
const (
bufSize = 66000
)
type FileSystem interface { type FileSystem interface {
Init(in *InitIn) (out *InitOut, code Error) Init(in *InitIn) (out *InitOut, code Error)
GetAttr(h *InHeader, in *GetAttrIn) (out *AttrOut, code Error) GetAttr(h *InHeader, in *GetAttrIn) (out *AttrOut, code Error)
......
...@@ -11,10 +11,6 @@ import ( ...@@ -11,10 +11,6 @@ import (
"unsafe" "unsafe"
) )
const (
bufSize = 66000
)
type mounted string type mounted string
// Mount create a fuse fs on the specified mount point. // Mount create a fuse fs on the specified mount point.
......
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