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

Use arrays for opcode dispatches.

parent 88b3aa85
// Code that handles the control loop, and en/decoding messages
// to/from the kernel. Dispatches calls into RawFileSystem.
package fuse package fuse
import ( import (
"bytes"
"fmt" "fmt"
"log" "log"
"os" "os"
...@@ -28,8 +30,9 @@ type request struct { ...@@ -28,8 +30,9 @@ type request struct {
inputBuf []byte inputBuf []byte
// These split up inputBuf. // These split up inputBuf.
inHeader *InHeader inHeader *InHeader // generic header
arg []byte inData unsafe.Pointer // per op data
arg []byte // flat data.
// Unstructured data, a pointer to the relevant XxxxOut struct. // Unstructured data, a pointer to the relevant XxxxOut struct.
data unsafe.Pointer data unsafe.Pointer
...@@ -46,6 +49,14 @@ type request struct { ...@@ -46,6 +49,14 @@ type request struct {
preWriteNs int64 preWriteNs int64
} }
func (me *request) filename() string {
return strings.TrimRight(string(me.arg), "\x00")
}
func (me *request) filenames(count int) []string {
return strings.Split(string(me.arg), "\x00", count)
}
type MountState struct { type MountState struct {
// Empty if unmounted. // Empty if unmounted.
mountPoint string mountPoint string
...@@ -252,6 +263,10 @@ func (me *MountState) handle(req *request) { ...@@ -252,6 +263,10 @@ func (me *MountState) handle(req *request) {
req.inHeader = (*InHeader)(unsafe.Pointer(&req.inputBuf[0])) req.inHeader = (*InHeader)(unsafe.Pointer(&req.inputBuf[0]))
req.arg = req.inputBuf[inHSize:] req.arg = req.inputBuf[inHSize:]
me.dispatch(req) me.dispatch(req)
// If we try to write OK, nil, we will get
// error: writer: Writev [[16 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0]]
// failed, err: writev: no such file or directory
if req.inHeader.Opcode != FUSE_FORGET { if req.inHeader.Opcode != FUSE_FORGET {
serialize(req, me.Debug) serialize(req, me.Debug)
req.preWriteNs = time.Nanoseconds() req.preWriteNs = time.Nanoseconds()
...@@ -260,165 +275,40 @@ func (me *MountState) handle(req *request) { ...@@ -260,165 +275,40 @@ func (me *MountState) handle(req *request) {
} }
func (me *MountState) dispatch(req *request) { func (me *MountState) dispatch(req *request) {
h := req.inHeader argSize, ok := inputSize(req.inHeader.Opcode)
argumentSize, ok := inputSizeMap[int(h.Opcode)]
if !ok { if !ok {
log.Println("Unknown opcode %d (input)", h.Opcode) log.Println("Unknown opcode %d (input)", req.inHeader.Opcode)
req.status = ENOSYS req.status = ENOSYS
return return
} }
if len(req.arg) < argumentSize {
log.Println("Short read for %v: %v", h.Opcode, req.arg) if len(req.arg) < argSize {
log.Println("Short read for %v: %v", req.inHeader.Opcode, req.arg)
req.status = EIO req.status = EIO
return return
} }
var inData unsafe.Pointer if argSize > 0 {
if argumentSize > 0 { req.inData = unsafe.Pointer(&req.arg[0])
inData = unsafe.Pointer(&req.arg[0]) req.arg = req.arg[argSize:]
}
data := req.arg[argumentSize:]
var status Status = OK
fs := me.fileSystem
filename := ""
// Perhaps a map is faster?
if h.Opcode == FUSE_UNLINK || h.Opcode == FUSE_RMDIR ||
h.Opcode == FUSE_LOOKUP || h.Opcode == FUSE_MKDIR ||
h.Opcode == FUSE_MKNOD || h.Opcode == FUSE_CREATE ||
h.Opcode == FUSE_LINK || h.Opcode == FUSE_GETXATTR ||
h.Opcode == FUSE_REMOVEXATTR {
filename = strings.TrimRight(string(data), "\x00")
}
if me.Debug {
nm := ""
if filename != "" {
nm = "n: '" + filename + "'"
}
if h.Opcode == FUSE_RENAME {
nm = "n: '" + string(data) + "'"
} }
log.Printf("Dispatch: %v, NodeId: %v %s\n", operationName(h.Opcode), h.NodeId, nm) f := lookupOperation(req.inHeader.Opcode)
} if f == nil {
msg := fmt.Sprintf("Unsupported OpCode: %d=%v",
// Follow ordering of fuse_lowlevel.h. req.inHeader.Opcode, operationName(req.inHeader.Opcode))
switch h.Opcode { me.Error(os.NewError(msg))
case FUSE_INIT:
req.data, status = me.init(h, (*InitIn)(inData))
case FUSE_DESTROY:
fs.Destroy(h, (*InitIn)(inData))
case FUSE_LOOKUP:
lookupOut, s := fs.Lookup(h, filename)
status = s
req.data = unsafe.Pointer(lookupOut)
case FUSE_FORGET:
fs.Forget(h, (*ForgetIn)(inData))
// If we try to write OK, nil, we will get
// error: writer: Writev [[16 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0]]
// failed, err: writev: no such file or directory
return
case FUSE_GETATTR:
// TODO - if inData.Fh is set, do file.GetAttr
attrOut, s := fs.GetAttr(h, (*GetAttrIn)(inData))
status = s
req.data = unsafe.Pointer(attrOut)
case FUSE_SETATTR:
req.data, status = doSetattr(me, h, (*SetAttrIn)(inData))
case FUSE_READLINK:
req.flatData, status = fs.Readlink(h)
case FUSE_MKNOD:
entryOut, s := fs.Mknod(h, (*MknodIn)(inData), filename)
status = s
req.data = unsafe.Pointer(entryOut)
case FUSE_MKDIR:
entryOut, s := fs.Mkdir(h, (*MkdirIn)(inData), filename)
status = s
req.data = unsafe.Pointer(entryOut)
case FUSE_UNLINK:
status = fs.Unlink(h, filename)
case FUSE_RMDIR:
status = fs.Rmdir(h, filename)
case FUSE_SYMLINK:
filenames := strings.Split(string(data), "\x00", 3)
if len(filenames) >= 2 {
entryOut, s := fs.Symlink(h, filenames[1], filenames[0])
status = s
req.data = unsafe.Pointer(entryOut)
} else {
status = EIO
}
case FUSE_RENAME:
filenames := strings.Split(string(data), "\x00", 3)
if len(filenames) >= 2 {
status = fs.Rename(h, (*RenameIn)(inData), filenames[0], filenames[1])
} else {
status = EIO
}
case FUSE_LINK:
entryOut, s := fs.Link(h, (*LinkIn)(inData), filename)
status = s
req.data = unsafe.Pointer(entryOut)
case FUSE_OPEN:
req.data, status = doOpen(me, h, (*OpenIn)(inData))
case FUSE_READ:
req.flatData, status = me.fileSystem.Read((*ReadIn)(inData), me.buffers)
case FUSE_WRITE:
req.data, status = doWrite(me, h, (*WriteIn)(inData), data)
case FUSE_FLUSH:
status = me.fileSystem.Flush((*FlushIn)(inData))
case FUSE_RELEASE:
me.fileSystem.Release(h, (*ReleaseIn)(inData))
case FUSE_FSYNC:
status = me.fileSystem.Fsync((*FsyncIn)(inData))
case FUSE_OPENDIR:
req.data, status = doOpenDir(me, h, (*OpenIn)(inData))
case FUSE_READDIR:
req.flatData, status = doReadDir(me, h, (*ReadIn)(inData))
case FUSE_RELEASEDIR:
me.fileSystem.ReleaseDir(h, (*ReleaseIn)(inData))
case FUSE_FSYNCDIR:
status = me.fileSystem.FsyncDir(h, (*FsyncIn)(inData))
case FUSE_SETXATTR:
splits := bytes.Split(data, []byte{0}, 2)
status = fs.SetXAttr(h, (*SetXAttrIn)(inData), string(splits[0]), splits[1])
case FUSE_GETXATTR:
req.data, req.flatData, status = doGetXAttr(me, h, (*GetXAttrIn)(inData), filename, h.Opcode)
case FUSE_LISTXATTR:
req.data, req.flatData, status = doGetXAttr(me, h, (*GetXAttrIn)(inData), filename, h.Opcode)
case FUSE_REMOVEXATTR:
status = fs.RemoveXAttr(h, filename)
case FUSE_ACCESS:
status = fs.Access(h, (*AccessIn)(inData))
case FUSE_CREATE:
req.data, status = doCreate(me, h, (*CreateIn)(inData), filename)
// TODO - implement file locking.
// case FUSE_SETLK
// case FUSE_SETLKW
case FUSE_BMAP:
bmapOut, s := fs.Bmap(h, (*BmapIn)(inData))
status = s
req.data = unsafe.Pointer(bmapOut)
case FUSE_IOCTL:
ioctlOut, s := fs.Ioctl(h, (*IoctlIn)(inData))
status = s
req.data = unsafe.Pointer(ioctlOut)
case FUSE_POLL:
pollOut, s := fs.Poll(h, (*PollIn)(inData))
status = s
req.data = unsafe.Pointer(pollOut)
// TODO - figure out how to support this
// case FUSE_INTERRUPT
default:
me.Error(os.NewError(fmt.Sprintf("Unsupported OpCode: %d=%v", h.Opcode, operationName(h.Opcode))))
req.status = ENOSYS req.status = ENOSYS
return return
} }
req.status = status if me.Debug {
nm := ""
// TODO - reinstate filename printing.
log.Printf("Dispatch: %v, NodeId: %v %s\n",
operationName(req.inHeader.Opcode), req.inHeader.NodeId, nm)
}
f(me, req)
} }
// Thanks to Andrew Gerrand for this hack. // Thanks to Andrew Gerrand for this hack.
...@@ -428,7 +318,7 @@ func asSlice(ptr unsafe.Pointer, byteCount int) []byte { ...@@ -428,7 +318,7 @@ func asSlice(ptr unsafe.Pointer, byteCount int) []byte {
} }
func serialize(req *request, debug bool) { func serialize(req *request, debug bool) {
dataLength, ok := outputSizeMap[int(req.inHeader.Opcode)] dataLength, ok := outputSize(req.inHeader.Opcode)
if !ok { if !ok {
log.Println("Unknown opcode %d (output)", req.inHeader.Opcode) log.Println("Unknown opcode %d (output)", req.inHeader.Opcode)
req.status = ENOSYS req.status = ENOSYS
...@@ -487,92 +377,3 @@ func (me *MountState) init(h *InHeader, input *InitIn) (unsafe.Pointer, Status) ...@@ -487,92 +377,3 @@ func (me *MountState) init(h *InHeader, input *InitIn) (unsafe.Pointer, Status)
return unsafe.Pointer(out), OK return unsafe.Pointer(out), OK
} }
////////////////////////////////////////////////////////////////
// Handling files.
func doOpen(state *MountState, header *InHeader, input *OpenIn) (unsafe.Pointer, Status) {
flags, handle, status := state.fileSystem.Open(header, input)
if status != OK {
return nil, status
}
out := new(OpenOut)
out.Fh = handle
out.OpenFlags = flags
return unsafe.Pointer(out), status
}
func doCreate(state *MountState, header *InHeader, input *CreateIn, name string) (unsafe.Pointer, Status) {
flags, handle, entry, status := state.fileSystem.Create(header, input, name)
if status != OK {
return nil, status
}
out := new(CreateOut)
out.Entry = *entry
out.Open.Fh = handle
out.Open.OpenFlags = flags
return unsafe.Pointer(out), status
}
func doWrite(state *MountState, header *InHeader, input *WriteIn, data []byte) (out unsafe.Pointer, code Status) {
n, status := state.fileSystem.Write(input, data)
o := &WriteOut{
Size: n,
}
return unsafe.Pointer(o), status
}
func doSetattr(state *MountState, header *InHeader, input *SetAttrIn) (out unsafe.Pointer, code Status) {
// TODO - if Fh != 0, we should do a FSetAttr instead.
o, s := state.fileSystem.SetAttr(header, input)
return unsafe.Pointer(o), s
}
func doGetXAttr(state *MountState, header *InHeader, input *GetXAttrIn, attr string, opcode uint32) (out unsafe.Pointer, data []byte, code Status) {
if opcode == FUSE_GETXATTR {
data, code = state.fileSystem.GetXAttr(header, attr)
} else {
data, code = state.fileSystem.ListXAttr(header)
}
if code != OK {
return nil, nil, code
}
size := uint32(len(data))
if input.Size == 0 {
out := new(GetXAttrOut)
out.Size = size
return unsafe.Pointer(out), nil, OK
}
if size > input.Size {
return nil, nil, ERANGE
}
return nil, data, OK
}
////////////////////////////////////////////////////////////////
// Handling directories
func doOpenDir(state *MountState, header *InHeader, input *OpenIn) (unsafe.Pointer, Status) {
flags, handle, status := state.fileSystem.OpenDir(header, input)
if status != OK {
return nil, status
}
out := new(OpenOut)
out.Fh = handle
out.OpenFlags = flags
return unsafe.Pointer(out), status
}
func doReadDir(state *MountState, header *InHeader, input *ReadIn) (out []byte, code Status) {
entries, code := state.fileSystem.ReadDir(header, input)
if entries == nil {
return nil, code
}
return entries.Bytes(), code
}
...@@ -296,24 +296,6 @@ func (me *LockingRawFileSystem) Create(header *InHeader, input *CreateIn, name s ...@@ -296,24 +296,6 @@ func (me *LockingRawFileSystem) Create(header *InHeader, input *CreateIn, name s
return me.Original.Create(header, input, name) return me.Original.Create(header, input, name)
} }
func (me *LockingRawFileSystem) Bmap(header *InHeader, input *BmapIn) (out *BmapOut, code Status) {
me.lock.Lock()
defer me.lock.Unlock()
return me.Original.Bmap(header, input)
}
func (me *LockingRawFileSystem) Ioctl(header *InHeader, input *IoctlIn) (out *IoctlOut, code Status) {
me.lock.Lock()
defer me.lock.Unlock()
return me.Original.Ioctl(header, input)
}
func (me *LockingRawFileSystem) Poll(header *InHeader, input *PollIn) (out *PollOut, code Status) {
me.lock.Lock()
defer me.lock.Unlock()
return me.Original.Poll(header, input)
}
func (me *LockingRawFileSystem) OpenDir(header *InHeader, input *OpenIn) (flags uint32, h uint64, status Status) { func (me *LockingRawFileSystem) OpenDir(header *InHeader, input *OpenIn) (flags uint32, h uint64, status Status) {
me.lock.Lock() me.lock.Lock()
defer me.lock.Unlock() defer me.lock.Unlock()
......
...@@ -275,11 +275,11 @@ func (me *testCase) testSymlink() { ...@@ -275,11 +275,11 @@ func (me *testCase) testSymlink() {
func (me *testCase) testRename() { func (me *testCase) testRename() {
me.tester.Log("Testing rename.") me.tester.Log("Testing rename.")
me.writeOrigFile() me.writeOrigFile()
sd := me.mountPoint+"/testRename" sd := me.mountPoint + "/testRename"
err := os.MkdirAll(sd, 0777) err := os.MkdirAll(sd, 0777)
defer os.RemoveAll(sd) defer os.RemoveAll(sd)
subFile := sd+"/subfile" subFile := sd + "/subfile"
err = os.Rename(me.mountFile, subFile) err = os.Rename(me.mountFile, subFile)
CheckSuccess(err) CheckSuccess(err)
f, _ := os.Lstat(me.origFile) f, _ := os.Lstat(me.origFile)
...@@ -295,11 +295,11 @@ func (me *testCase) testRename() { ...@@ -295,11 +295,11 @@ func (me *testCase) testRename() {
func (me *testCase) testDelRename() { func (me *testCase) testDelRename() {
me.tester.Log("Testing del+rename.") me.tester.Log("Testing del+rename.")
sd := me.mountPoint+"/testDelRename" sd := me.mountPoint + "/testDelRename"
err := os.MkdirAll(sd, 0755) err := os.MkdirAll(sd, 0755)
CheckSuccess(err) CheckSuccess(err)
d := sd+"/dest" d := sd + "/dest"
err = ioutil.WriteFile(d, []byte("blabla"), 0644) err = ioutil.WriteFile(d, []byte("blabla"), 0644)
CheckSuccess(err) CheckSuccess(err)
...@@ -309,7 +309,7 @@ func (me *testCase) testDelRename() { ...@@ -309,7 +309,7 @@ func (me *testCase) testDelRename() {
err = os.Remove(d) err = os.Remove(d)
CheckSuccess(err) CheckSuccess(err)
s := sd+"/src" s := sd + "/src"
err = ioutil.WriteFile(s, []byte("blabla"), 0644) err = ioutil.WriteFile(s, []byte("blabla"), 0644)
CheckSuccess(err) CheckSuccess(err)
...@@ -322,15 +322,15 @@ func (me *testCase) testDelRename() { ...@@ -322,15 +322,15 @@ func (me *testCase) testDelRename() {
func (me *testCase) testOverwriteRename() { func (me *testCase) testOverwriteRename() {
me.tester.Log("Testing rename overwrite.") me.tester.Log("Testing rename overwrite.")
sd := me.mountPoint+"/testOverwriteRename" sd := me.mountPoint + "/testOverwriteRename"
err := os.MkdirAll(sd, 0755) err := os.MkdirAll(sd, 0755)
CheckSuccess(err) CheckSuccess(err)
d := sd+"/dest" d := sd + "/dest"
err = ioutil.WriteFile(d, []byte("blabla"), 0644) err = ioutil.WriteFile(d, []byte("blabla"), 0644)
CheckSuccess(err) CheckSuccess(err)
s := sd+"/src" s := sd + "/src"
err = ioutil.WriteFile(s, []byte("blabla"), 0644) err = ioutil.WriteFile(s, []byte("blabla"), 0644)
CheckSuccess(err) CheckSuccess(err)
......
This diff is collapsed.
package fuse package fuse
import ( import (
"fmt" "fmt"
) )
...@@ -24,8 +25,7 @@ func (me *FileSystemDebug) GetAttr(path string) (*Attr, Status) { ...@@ -24,8 +25,7 @@ func (me *FileSystemDebug) GetAttr(path string) (*Attr, Status) {
return &Attr{ return &Attr{
Mode: S_IFREG, Mode: S_IFREG,
Size: uint64(len(me.Connector.DebugString())), Size: uint64(len(me.Connector.DebugString())),
}, OK },OK
} }
return me.Original.GetAttr(path) return me.Original.GetAttr(path)
} }
...@@ -244,7 +244,7 @@ func (me *FileSystemConnector) verify() { ...@@ -244,7 +244,7 @@ func (me *FileSystemConnector) verify() {
open := root.totalOpenCount() open := root.totalOpenCount()
openFiles := len(me.openFiles) openFiles := len(me.openFiles)
mounted := root.totalMountCount() mounted := root.totalMountCount()
if open + hiddenOpen != openFiles + mounted { if open+hiddenOpen != openFiles+mounted {
panic(fmt.Sprintf("opencount mismatch totalOpen=%v openFiles=%v mounted=%v hidden=%v", open, openFiles, mounted, hiddenOpen)) panic(fmt.Sprintf("opencount mismatch totalOpen=%v openFiles=%v mounted=%v hidden=%v", open, openFiles, mounted, hiddenOpen))
} }
} }
...@@ -308,8 +308,8 @@ func (me *FileSystemConnector) considerDropInode(n *inode) { ...@@ -308,8 +308,8 @@ func (me *FileSystemConnector) considerDropInode(n *inode) {
} }
// TODO - this should probably not happen at all. // TODO - this should probably not happen at all.
if (n.LookupCount <= 0 && len(n.Children) == 0 && (n.mount == nil || n.mount.unmountPending) && if n.LookupCount <= 0 && len(n.Children) == 0 && (n.mount == nil || n.mount.unmountPending) &&
n.OpenCount <= 0) { n.OpenCount <= 0 {
n.setParent(nil) n.setParent(nil)
me.inodeMap[n.NodeId] = nil, false me.inodeMap[n.NodeId] = nil, false
} }
...@@ -384,7 +384,7 @@ func EmptyFileSystemConnector() (out *FileSystemConnector) { ...@@ -384,7 +384,7 @@ func EmptyFileSystemConnector() (out *FileSystemConnector) {
out.options.AttrTimeout = 1.0 out.options.AttrTimeout = 1.0
out.options.EntryTimeout = 1.0 out.options.EntryTimeout = 1.0
out.verify() out.verify()
return out; return out
} }
func NewFileSystemConnector(fs FileSystem) (out *FileSystemConnector) { func NewFileSystemConnector(fs FileSystem) (out *FileSystemConnector) {
......
...@@ -151,21 +151,6 @@ func (me *TimingRawFileSystem) Create(header *InHeader, input *CreateIn, name st ...@@ -151,21 +151,6 @@ func (me *TimingRawFileSystem) Create(header *InHeader, input *CreateIn, name st
return me.Original.Create(header, input, name) return me.Original.Create(header, input, name)
} }
func (me *TimingRawFileSystem) Bmap(header *InHeader, input *BmapIn) (out *BmapOut, code Status) {
defer me.startTimer("Bmap")()
return me.Original.Bmap(header, input)
}
func (me *TimingRawFileSystem) Ioctl(header *InHeader, input *IoctlIn) (out *IoctlOut, code Status) {
defer me.startTimer("Ioctl")()
return me.Original.Ioctl(header, input)
}
func (me *TimingRawFileSystem) Poll(header *InHeader, input *PollIn) (out *PollOut, code Status) {
defer me.startTimer("Poll")()
return me.Original.Poll(header, input)
}
func (me *TimingRawFileSystem) OpenDir(header *InHeader, input *OpenIn) (flags uint32, handle uint64, status Status) { func (me *TimingRawFileSystem) OpenDir(header *InHeader, input *OpenIn) (flags uint32, handle uint64, status Status) {
defer me.startTimer("OpenDir")() defer me.startTimer("OpenDir")()
return me.Original.OpenDir(header, input) return me.Original.OpenDir(header, input)
......
...@@ -143,6 +143,8 @@ const ( ...@@ -143,6 +143,8 @@ const (
FUSE_IOCTL = 39 FUSE_IOCTL = 39
FUSE_POLL = 40 FUSE_POLL = 40
OPCODE_COUNT = 41
CUSE_INIT = 4096 CUSE_INIT = 4096
) )
...@@ -287,8 +289,8 @@ type OpenOut struct { ...@@ -287,8 +289,8 @@ type OpenOut struct {
} }
type CreateOut struct { type CreateOut struct {
Entry EntryOut EntryOut
Open OpenOut OpenOut
} }
type ReleaseIn struct { type ReleaseIn struct {
...@@ -456,7 +458,7 @@ type NotifyPollWakeupOut struct { ...@@ -456,7 +458,7 @@ type NotifyPollWakeupOut struct {
type InHeader struct { type InHeader struct {
Length uint32 Length uint32
Opcode uint32 Opcode
Unique uint64 Unique uint64
NodeId uint64 NodeId uint64
Identity Identity
...@@ -528,9 +530,13 @@ type RawFileSystem interface { ...@@ -528,9 +530,13 @@ type RawFileSystem interface {
RemoveXAttr(header *InHeader, attr string) (code Status) RemoveXAttr(header *InHeader, attr string) (code Status)
Access(header *InHeader, input *AccessIn) (code Status) Access(header *InHeader, input *AccessIn) (code Status)
Create(header *InHeader, input *CreateIn, name string) (flags uint32, handle uint64, out *EntryOut, code Status) Create(header *InHeader, input *CreateIn, name string) (flags uint32, handle uint64, out *EntryOut, code Status)
/*
// unimplemented.
Bmap(header *InHeader, input *BmapIn) (out *BmapOut, code Status) Bmap(header *InHeader, input *BmapIn) (out *BmapOut, code Status)
Ioctl(header *InHeader, input *IoctlIn) (out *IoctlOut, code Status) Ioctl(header *InHeader, input *IoctlIn) (out *IoctlOut, code Status)
Poll(header *InHeader, input *PollIn) (out *PollOut, code Status) Poll(header *InHeader, input *PollIn) (out *PollOut, code Status)
*/
// File handling. // File handling.
Open(header *InHeader, input *OpenIn) (flags uint32, handle uint64, status Status) Open(header *InHeader, input *OpenIn) (flags uint32, handle uint64, status Status)
......
...@@ -189,18 +189,6 @@ func (me *WrappingRawFileSystem) Create(header *InHeader, input *CreateIn, name ...@@ -189,18 +189,6 @@ func (me *WrappingRawFileSystem) Create(header *InHeader, input *CreateIn, name
return me.Original.Create(header, input, name) return me.Original.Create(header, input, name)
} }
func (me *WrappingRawFileSystem) Bmap(header *InHeader, input *BmapIn) (out *BmapOut, code Status) {
return me.Original.Bmap(header, input)
}
func (me *WrappingRawFileSystem) Ioctl(header *InHeader, input *IoctlIn) (out *IoctlOut, code Status) {
return me.Original.Ioctl(header, input)
}
func (me *WrappingRawFileSystem) Poll(header *InHeader, input *PollIn) (out *PollOut, code Status) {
return me.Original.Poll(header, input)
}
func (me *WrappingRawFileSystem) OpenDir(header *InHeader, input *OpenIn) (flags uint32, handle uint64, status Status) { func (me *WrappingRawFileSystem) OpenDir(header *InHeader, input *OpenIn) (flags uint32, handle uint64, status Status) {
return me.Original.OpenDir(header, input) return me.Original.OpenDir(header, input)
} }
......
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