Commit 738a1dad authored by Aaron Jacobs's avatar Aaron Jacobs

InternalStatFSOp.kernelResponse

parent 707d5245
...@@ -915,7 +915,9 @@ type InternalStatFSOp struct { ...@@ -915,7 +915,9 @@ type InternalStatFSOp struct {
} }
func (o *InternalStatFSOp) kernelResponse() (msg []byte) { func (o *InternalStatFSOp) kernelResponse() (msg []byte) {
panic("TODO") buf := fuseshim.NewBuffer(unsafe.Sizeof(fusekernel.StatfsOut{}))
buf.Alloc(unsafe.Sizeof(fusekernel.StatfsOut{}))
return
} }
// Do not use this struct directly. See the TODO in fuseops/ops.go. // Do not use this struct directly. See the TODO in fuseops/ops.go.
......
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