containerd/vendor/github.com/hanwen/go-fuse/v2/fuse/server_linux.go
Brad Davidson 890953d3c6
Enable btrfs/fuse-overlayfs/stargz snapshotter plugins
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2025-05-06 22:38:41 +00:00

41 lines
912 B
Go

// Copyright 2016 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package fuse
import (
"syscall"
)
const useSingleReader = false
func (ms *Server) systemWrite(req *request) Status {
if req.outPayloadSize() == 0 {
err := handleEINTR(func() error {
_, err := syscall.Write(ms.mountFd, req.outputBuf)
return err
})
return ToStatus(err)
}
if req.fdData != nil {
if ms.canSplice {
err := ms.trySplice(req, req.fdData)
if err == nil {
req.readResult.Done()
return OK
}
ms.opts.Logger.Println("trySplice:", err)
}
req.outPayload, req.status = req.fdData.Bytes(req.outPayload)
req.serializeHeader(len(req.outPayload))
}
_, err := writev(ms.mountFd, [][]byte{req.outputBuf, req.outPayload})
if req.readResult != nil {
req.readResult.Done()
}
return ToStatus(err)
}