Compare commits
3 Commits
master
...
notificati
Author | SHA1 | Date |
---|---|---|
Vitaliy Filippov | a091e49319 | |
Vitaliy Filippov | 54ad710d24 | |
Vitaliy Filippov | ac7ca2c754 |
|
@ -369,18 +369,24 @@ func (c *Connection) readMessage() (*buffer.InMessage, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write the supplied message to the kernel.
|
// Write the supplied message to the kernel.
|
||||||
func (c *Connection) writeMessage(msg []byte) error {
|
func (c *Connection) writeMessage(outMsg *buffer.OutMessage) error {
|
||||||
|
var err error
|
||||||
|
var n int
|
||||||
|
expectedLen := outMsg.Len()
|
||||||
|
if outMsg.Sglist != nil {
|
||||||
|
n, err = writev(int(c.dev.Fd()), outMsg.Sglist)
|
||||||
|
} else {
|
||||||
// Avoid the retry loop in os.File.Write.
|
// Avoid the retry loop in os.File.Write.
|
||||||
n, err := syscall.Write(int(c.dev.Fd()), msg)
|
n, err = syscall.Write(int(c.dev.Fd()), outMsg.OutHeaderBytes())
|
||||||
if err != nil {
|
}
|
||||||
|
if err == nil && n != expectedLen {
|
||||||
|
err = fmt.Errorf("Wrote %d bytes; expected %d", n, expectedLen)
|
||||||
|
}
|
||||||
|
if err != nil && c.errorLogger != nil {
|
||||||
|
c.errorLogger.Printf("writeMessage: %v %v", err, outMsg.OutHeaderBytes())
|
||||||
|
}
|
||||||
|
outMsg.Sglist = nil
|
||||||
return err
|
return err
|
||||||
}
|
|
||||||
|
|
||||||
if n != len(msg) {
|
|
||||||
return fmt.Errorf("Wrote %d bytes; expected %d", n, len(msg))
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReadOp consumes the next op from the kernel process, returning the op and a
|
// ReadOp consumes the next op from the kernel process, returning the op and a
|
||||||
|
@ -510,19 +516,21 @@ func (c *Connection) Reply(ctx context.Context, opErr error) {
|
||||||
noResponse := c.kernelResponse(outMsg, inMsg.Header().Unique, op, opErr)
|
noResponse := c.kernelResponse(outMsg, inMsg.Header().Unique, op, opErr)
|
||||||
|
|
||||||
if !noResponse {
|
if !noResponse {
|
||||||
var err error
|
c.writeMessage(outMsg)
|
||||||
if outMsg.Sglist != nil {
|
|
||||||
_, err = writev(int(c.dev.Fd()), outMsg.Sglist)
|
|
||||||
} else {
|
|
||||||
err = c.writeMessage(outMsg.OutHeaderBytes())
|
|
||||||
}
|
|
||||||
if err != nil && c.errorLogger != nil {
|
|
||||||
c.errorLogger.Printf("writeMessage: %v %v", err, outMsg.OutHeaderBytes())
|
|
||||||
}
|
|
||||||
outMsg.Sglist = nil
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Send a notification to the kernel
|
||||||
|
// notification must be a pointer to one of fuseops.NotifyXXX structures
|
||||||
|
// To avoid a deadlock notifications must not be called in the execution path of a related filesytem operation or within any code that could hold a lock that could be needed to execute such an operation. As of kernel 4.18, a "related operation" is a lookup(), symlink(), mknod(), mkdir(), unlink(), rename(), link() or create() request for the parent, and a setattr(), unlink(), rmdir(), rename(), setxattr(), removexattr(), readdir() or readdirplus() request for the inode itself.
|
||||||
|
func (c *Connection) Notify(notification interface{}) error {
|
||||||
|
outMsg := c.getOutMessage()
|
||||||
|
defer c.putOutMessage(outMsg)
|
||||||
|
c.kernelNotification(outMsg, notification)
|
||||||
|
outMsg.OutHeader().Len = uint32(outMsg.Len())
|
||||||
|
return c.writeMessage(outMsg)
|
||||||
|
}
|
||||||
|
|
||||||
// Close the connection. Must not be called until operations that were read
|
// Close the connection. Must not be called until operations that were read
|
||||||
// from the connection have been responded to.
|
// from the connection have been responded to.
|
||||||
func (c *Connection) close() error {
|
func (c *Connection) close() error {
|
||||||
|
|
109
conversions.go
109
conversions.go
|
@ -688,6 +688,42 @@ func convertInMessage(
|
||||||
Pid: inMsg.Header().Pid},
|
Pid: inMsg.Header().Pid},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case fusekernel.OpPoll:
|
||||||
|
type input fusekernel.PollIn
|
||||||
|
in := (*input)(inMsg.Consume(unsafe.Sizeof(input{})))
|
||||||
|
if in == nil {
|
||||||
|
return nil, errors.New("Corrupt OpPoll")
|
||||||
|
}
|
||||||
|
|
||||||
|
o = &fuseops.PollOp{
|
||||||
|
Inode: fuseops.InodeID(inMsg.Header().Nodeid),
|
||||||
|
Handle: fuseops.HandleID(in.Fh),
|
||||||
|
Kh: in.Kh,
|
||||||
|
Flags: fusekernel.PollFlags(in.Flags),
|
||||||
|
Events: fusekernel.PollEvents(in.Events),
|
||||||
|
OpContext: fuseops.OpContext{Pid: inMsg.Header().Pid},
|
||||||
|
}
|
||||||
|
|
||||||
|
case fusekernel.OpNotifyReply:
|
||||||
|
type input fusekernel.NotifyRetrieveIn
|
||||||
|
in := (*input)(inMsg.Consume(unsafe.Sizeof(input{})))
|
||||||
|
if in == nil {
|
||||||
|
return nil, errors.New("Corrupt OpNotifyReply")
|
||||||
|
}
|
||||||
|
|
||||||
|
buf := inMsg.ConsumeBytes(inMsg.Len())
|
||||||
|
if len(buf) < int(in.Size) {
|
||||||
|
return nil, errors.New("Corrupt OpNotifyReply")
|
||||||
|
}
|
||||||
|
|
||||||
|
o = &fuseops.NotifyRetrieveReplyOp{
|
||||||
|
Inode: fuseops.InodeID(inMsg.Header().Nodeid),
|
||||||
|
Unique: inMsg.Header().Unique,
|
||||||
|
Offset: in.Offset,
|
||||||
|
Length: in.Size,
|
||||||
|
OpContext: fuseops.OpContext{Pid: inMsg.Header().Pid},
|
||||||
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
o = &unknownOp{
|
o = &unknownOp{
|
||||||
OpCode: inMsg.Header().Opcode,
|
OpCode: inMsg.Header().Opcode,
|
||||||
|
@ -721,6 +757,9 @@ func (c *Connection) kernelResponse(
|
||||||
case *fuseops.BatchForgetOp:
|
case *fuseops.BatchForgetOp:
|
||||||
return true
|
return true
|
||||||
|
|
||||||
|
case *fuseops.NotifyRetrieveReplyOp:
|
||||||
|
return true
|
||||||
|
|
||||||
case *interruptOp:
|
case *interruptOp:
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -944,6 +983,13 @@ func (c *Connection) kernelResponseForOp(
|
||||||
out.TimeGran = 1
|
out.TimeGran = 1
|
||||||
out.MaxPages = o.MaxPages
|
out.MaxPages = o.MaxPages
|
||||||
|
|
||||||
|
case *fuseops.PollOp:
|
||||||
|
out := (*fusekernel.PollOut)(m.Grow(int(unsafe.Sizeof(fusekernel.PollOut{}))))
|
||||||
|
out.Revents = uint32(o.Revents)
|
||||||
|
|
||||||
|
case *fuseops.NotifyRetrieveReplyOp:
|
||||||
|
// Empty response
|
||||||
|
|
||||||
default:
|
default:
|
||||||
panic(fmt.Sprintf("Unexpected op: %#v", op))
|
panic(fmt.Sprintf("Unexpected op: %#v", op))
|
||||||
}
|
}
|
||||||
|
@ -951,6 +997,69 @@ func (c *Connection) kernelResponseForOp(
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Like kernelResponse, but assumes the user replied with a nil error to the op.
|
||||||
|
func (c *Connection) kernelNotification(
|
||||||
|
m *buffer.OutMessage,
|
||||||
|
op interface{}) {
|
||||||
|
|
||||||
|
h := m.OutHeader()
|
||||||
|
h.Unique = 0
|
||||||
|
|
||||||
|
// Create the appropriate output message
|
||||||
|
switch o := op.(type) {
|
||||||
|
case *fuseops.NotifyPollWakeup:
|
||||||
|
h.Error = fusekernel.NotifyCodePoll
|
||||||
|
out := (*fusekernel.NotifyPollWakeupOut)(m.Grow(int(unsafe.Sizeof(fusekernel.NotifyPollWakeupOut{}))))
|
||||||
|
out.Kh = o.Kh
|
||||||
|
|
||||||
|
case *fuseops.NotifyInvalInode:
|
||||||
|
h.Error = fusekernel.NotifyCodeInvalInode
|
||||||
|
out := (*fusekernel.NotifyInvalInodeOut)(m.Grow(int(unsafe.Sizeof(fusekernel.NotifyInvalInodeOut{}))))
|
||||||
|
out.Ino = uint64(o.Inode)
|
||||||
|
out.Off = o.Offset
|
||||||
|
out.Len = o.Length
|
||||||
|
|
||||||
|
case *fuseops.NotifyInvalEntry:
|
||||||
|
h.Error = fusekernel.NotifyCodeInvalEntry
|
||||||
|
out := (*fusekernel.NotifyInvalEntryOut)(m.Grow(int(unsafe.Sizeof(fusekernel.NotifyInvalEntryOut{}))))
|
||||||
|
out.Parent = uint64(o.Parent)
|
||||||
|
out.Namelen = uint32(len(o.Name))
|
||||||
|
m.AppendString(o.Name)
|
||||||
|
m.AppendString("\x00")
|
||||||
|
|
||||||
|
case *fuseops.NotifyDelete:
|
||||||
|
h.Error = fusekernel.NotifyCodeDelete
|
||||||
|
out := (*fusekernel.NotifyDeleteOut)(m.Grow(int(unsafe.Sizeof(fusekernel.NotifyDeleteOut{}))))
|
||||||
|
out.Parent = uint64(o.Parent)
|
||||||
|
out.Child = uint64(o.Child)
|
||||||
|
out.Namelen = uint32(len(o.Name))
|
||||||
|
m.AppendString(o.Name)
|
||||||
|
m.AppendString("\x00")
|
||||||
|
|
||||||
|
case *fuseops.NotifyStore:
|
||||||
|
h.Error = fusekernel.NotifyCodeStore
|
||||||
|
out := (*fusekernel.NotifyStoreOut)(m.Grow(int(unsafe.Sizeof(fusekernel.NotifyStoreOut{}))))
|
||||||
|
out.Nodeid = uint64(o.Inode)
|
||||||
|
out.Offset = o.Offset
|
||||||
|
out.Size = o.Length
|
||||||
|
m.Append(o.Data...)
|
||||||
|
m.ShrinkTo(buffer.OutMessageHeaderSize + int(unsafe.Sizeof(fusekernel.NotifyStoreOut{})) + int(o.Length))
|
||||||
|
|
||||||
|
case *fuseops.NotifyRetrieve:
|
||||||
|
h.Error = fusekernel.NotifyCodeRetrieve
|
||||||
|
out := (*fusekernel.NotifyRetrieveOut)(m.Grow(int(unsafe.Sizeof(fusekernel.NotifyRetrieveOut{}))))
|
||||||
|
out.Unique = o.Unique
|
||||||
|
out.Nodeid = uint64(o.Inode)
|
||||||
|
out.Offset = o.Offset
|
||||||
|
out.Size = o.Length
|
||||||
|
|
||||||
|
default:
|
||||||
|
panic(fmt.Sprintf("Unexpected notification: %#v", op))
|
||||||
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
// General conversions
|
// General conversions
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
|
|
124
fuseops/ops.go
124
fuseops/ops.go
|
@ -965,3 +965,127 @@ type FallocateOp struct {
|
||||||
Mode uint32
|
Mode uint32
|
||||||
OpContext OpContext
|
OpContext OpContext
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Request notifications when the file system user calls poll/select or
|
||||||
|
// similar operations on a file.
|
||||||
|
type PollOp struct {
|
||||||
|
// The inode and handle the user wants to poll
|
||||||
|
Inode InodeID
|
||||||
|
Handle HandleID
|
||||||
|
|
||||||
|
// Kh is the "kernel handle". The reason behind it is that it's allocated
|
||||||
|
// by the kernel on file allocation and guaranteed to be unique as opposed
|
||||||
|
// to regular file handles (HandleID) generated by the userland server
|
||||||
|
// (by us). Kh has to be used in NotifyPollWakeupOut replies.
|
||||||
|
Kh uint64
|
||||||
|
|
||||||
|
// Poll flags
|
||||||
|
Flags fusekernel.PollFlags
|
||||||
|
|
||||||
|
// Requested events
|
||||||
|
Events fusekernel.PollEvents
|
||||||
|
|
||||||
|
// Set by the file system: the actual events that have happened
|
||||||
|
// since the last poll
|
||||||
|
Revents fusekernel.PollEvents
|
||||||
|
OpContext OpContext
|
||||||
|
}
|
||||||
|
|
||||||
|
// Notify consumers waiting for poll/epoll that events are incoming
|
||||||
|
// for the specified kernel handle. The kernel will send a PollOp request
|
||||||
|
// to get the event mask after receiving this notification
|
||||||
|
type NotifyPollWakeup struct {
|
||||||
|
Kh uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
// Notify to invalidate cache for an inode.
|
||||||
|
//
|
||||||
|
// If the filesystem has writeback caching enabled, invalidating an inode
|
||||||
|
// will first trigger a writeback of all dirty pages. The call will block
|
||||||
|
// until all writeback requests have completed and the inode has been
|
||||||
|
// invalidated. It will, however, not wait for completion of pending writeback
|
||||||
|
// requests that have been issued before.
|
||||||
|
type NotifyInvalInode struct {
|
||||||
|
Inode InodeID
|
||||||
|
Offset int64
|
||||||
|
Length int64
|
||||||
|
}
|
||||||
|
|
||||||
|
// Notify to invalidate parent attributes and the dentry matching parent/name
|
||||||
|
//
|
||||||
|
// To avoid a deadlock this request must not be sent in the execution path
|
||||||
|
// of a related filesytem operation or within any code that could hold a lock
|
||||||
|
// that could be needed to execute such an operation. As of kernel 4.18, a
|
||||||
|
// "related operation" is a lookup(), symlink(), mknod(), mkdir(), unlink(),
|
||||||
|
// rename(), link() or create() request for the parent, and a setattr(),
|
||||||
|
// unlink(), rmdir(), rename(), setxattr(), removexattr(), readdir() or
|
||||||
|
// readdirplus() request for the inode itself.
|
||||||
|
//
|
||||||
|
// When called correctly, it will never block.
|
||||||
|
type NotifyInvalEntry struct {
|
||||||
|
Parent InodeID
|
||||||
|
Name string
|
||||||
|
}
|
||||||
|
|
||||||
|
// This request behaves like NotifyInvalEntry with the following additional
|
||||||
|
// effect (at least as of Linux kernel 4.8):
|
||||||
|
//
|
||||||
|
// If the provided child inode matches the inode that is currently associated
|
||||||
|
// with the cached dentry, and if there are any inotify watches registered for
|
||||||
|
// the dentry, then the watchers are informed that the dentry has been deleted.
|
||||||
|
//
|
||||||
|
// To avoid a deadlock this request must not be sent while executing a
|
||||||
|
// related filesytem operation or while holding a lock that could be needed to
|
||||||
|
// execute such an operation.
|
||||||
|
type NotifyDelete struct {
|
||||||
|
Parent InodeID
|
||||||
|
Child InodeID
|
||||||
|
Name string
|
||||||
|
}
|
||||||
|
|
||||||
|
// Store data to the kernel buffers
|
||||||
|
//
|
||||||
|
// Synchronously store data in the kernel buffers belonging to the given inode.
|
||||||
|
// The stored data is marked up-to-date (no read will be performed against it,
|
||||||
|
// unless it's invalidated or evicted from the cache).
|
||||||
|
//
|
||||||
|
// If the stored data overflows the current file size, then the size is extended,
|
||||||
|
// similarly to a write(2) on the filesystem.
|
||||||
|
//
|
||||||
|
// If this request returns an error, then the store wasn't fully completed, but
|
||||||
|
// it may have been partially completed.
|
||||||
|
type NotifyStore struct {
|
||||||
|
Inode InodeID
|
||||||
|
Offset uint64
|
||||||
|
Length uint32
|
||||||
|
Data [][]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
// Retrieve data from the kernel buffers belonging to the given inode
|
||||||
|
//
|
||||||
|
// If successful then the kernel will send a NotifyRetrieveReplyOp as a reply.
|
||||||
|
// Only present pages are returned in the retrieve reply. Retrieving stops when it
|
||||||
|
// finds a non-present page and only data prior to that is returned.
|
||||||
|
//
|
||||||
|
// If this request returns an error, then the retrieve will not be completed and
|
||||||
|
// no reply will be sent.
|
||||||
|
//
|
||||||
|
// This request doesn't change the dirty state of pages in the kernel buffer. For
|
||||||
|
// dirty pages the write() method will be called regardless of having been retrieved
|
||||||
|
// previously.
|
||||||
|
type NotifyRetrieve struct {
|
||||||
|
Inode InodeID
|
||||||
|
Unique uint64
|
||||||
|
Offset uint64
|
||||||
|
Length uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
// Matches the size of WriteIn
|
||||||
|
type NotifyRetrieveReplyOp struct {
|
||||||
|
Inode InodeID
|
||||||
|
Unique uint64
|
||||||
|
Offset uint64
|
||||||
|
Length uint32
|
||||||
|
|
||||||
|
OpContext OpContext
|
||||||
|
}
|
||||||
|
|
|
@ -63,6 +63,9 @@ type FileSystem interface {
|
||||||
ListXattr(context.Context, *fuseops.ListXattrOp) error
|
ListXattr(context.Context, *fuseops.ListXattrOp) error
|
||||||
SetXattr(context.Context, *fuseops.SetXattrOp) error
|
SetXattr(context.Context, *fuseops.SetXattrOp) error
|
||||||
Fallocate(context.Context, *fuseops.FallocateOp) error
|
Fallocate(context.Context, *fuseops.FallocateOp) error
|
||||||
|
Poll(context.Context, *fuseops.PollOp) error
|
||||||
|
|
||||||
|
SetConnection(*fuse.Connection)
|
||||||
|
|
||||||
// Regard all inodes (including the root inode) as having their lookup counts
|
// Regard all inodes (including the root inode) as having their lookup counts
|
||||||
// decremented to zero, and clean up any resources associated with the file
|
// decremented to zero, and clean up any resources associated with the file
|
||||||
|
@ -95,6 +98,8 @@ type fileSystemServer struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *fileSystemServer) ServeOps(c *fuse.Connection) {
|
func (s *fileSystemServer) ServeOps(c *fuse.Connection) {
|
||||||
|
s.fs.SetConnection(c)
|
||||||
|
|
||||||
// When we are done, we clean up by waiting for all in-flight ops then
|
// When we are done, we clean up by waiting for all in-flight ops then
|
||||||
// destroying the file system.
|
// destroying the file system.
|
||||||
defer func() {
|
defer func() {
|
||||||
|
@ -236,6 +241,9 @@ func (s *fileSystemServer) handleOp(
|
||||||
|
|
||||||
case *fuseops.FallocateOp:
|
case *fuseops.FallocateOp:
|
||||||
err = s.fs.Fallocate(ctx, typed)
|
err = s.fs.Fallocate(ctx, typed)
|
||||||
|
|
||||||
|
case *fuseops.PollOp:
|
||||||
|
err = s.fs.Poll(ctx, typed)
|
||||||
}
|
}
|
||||||
|
|
||||||
c.Reply(ctx, err)
|
c.Reply(ctx, err)
|
||||||
|
|
|
@ -204,5 +204,14 @@ func (fs *NotImplementedFileSystem) Fallocate(
|
||||||
return fuse.ENOSYS
|
return fuse.ENOSYS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (fs *NotImplementedFileSystem) Poll(
|
||||||
|
ctx context.Context,
|
||||||
|
op *fuseops.PollOp) error {
|
||||||
|
return fuse.ENOSYS
|
||||||
|
}
|
||||||
|
|
||||||
|
func (fs *NotImplementedFileSystem) SetConnection(*fuse.Connection) {
|
||||||
|
}
|
||||||
|
|
||||||
func (fs *NotImplementedFileSystem) Destroy() {
|
func (fs *NotImplementedFileSystem) Destroy() {
|
||||||
}
|
}
|
||||||
|
|
|
@ -346,6 +346,34 @@ var releaseFlagNames = []flagName{
|
||||||
{uint32(ReleaseFlush), "ReleaseFlush"},
|
{uint32(ReleaseFlush), "ReleaseFlush"},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Poll flags and events are used in the Poll exchange.
|
||||||
|
type PollFlags uint32
|
||||||
|
|
||||||
|
const (
|
||||||
|
// From the kernel source:
|
||||||
|
// Ask for notification if there's someone waiting for it.
|
||||||
|
// The client may ignore the flag and always notify.
|
||||||
|
PollScheduleNotify PollFlags = 1 << 0
|
||||||
|
)
|
||||||
|
|
||||||
|
type PollEvents uint32
|
||||||
|
|
||||||
|
const (
|
||||||
|
PollInEvent PollEvents = 0x0001
|
||||||
|
PollPriEvent PollEvents = 0x0002
|
||||||
|
PollOutEvent PollEvents = 0x0004
|
||||||
|
PollErrEvent PollEvents = 0x0008
|
||||||
|
PollHupEvent PollEvents = 0x0010
|
||||||
|
PollNvalEvent PollEvents = 0x0020
|
||||||
|
PollRdNormEvent PollEvents = 0x0040
|
||||||
|
PollRdBandEvent PollEvents = 0x0080
|
||||||
|
PollWrNormEvent PollEvents = 0x0100
|
||||||
|
PollWrBandEvent PollEvents = 0x0200
|
||||||
|
PollMsgEvent PollEvents = 0x0400
|
||||||
|
PollRemoveEvent PollEvents = 0x1000
|
||||||
|
PollRdHupEvent PollEvents = 0x2000
|
||||||
|
)
|
||||||
|
|
||||||
// Opcodes
|
// Opcodes
|
||||||
const (
|
const (
|
||||||
OpLookup = 1
|
OpLookup = 1
|
||||||
|
@ -386,6 +414,7 @@ const (
|
||||||
OpDestroy = 38
|
OpDestroy = 38
|
||||||
OpIoctl = 39 // Linux?
|
OpIoctl = 39 // Linux?
|
||||||
OpPoll = 40 // Linux?
|
OpPoll = 40 // Linux?
|
||||||
|
OpNotifyReply = 41
|
||||||
OpBatchForget = 42
|
OpBatchForget = 42
|
||||||
OpFallocate = 43
|
OpFallocate = 43
|
||||||
|
|
||||||
|
@ -552,6 +581,18 @@ func CreateInSize(p Protocol) uintptr {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type PollIn struct {
|
||||||
|
Fh uint64
|
||||||
|
Kh uint64
|
||||||
|
Flags uint32
|
||||||
|
Events uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type PollOut struct {
|
||||||
|
Revents uint32
|
||||||
|
padding uint32
|
||||||
|
}
|
||||||
|
|
||||||
type ReleaseIn struct {
|
type ReleaseIn struct {
|
||||||
Fh uint64
|
Fh uint64
|
||||||
Flags uint32
|
Flags uint32
|
||||||
|
@ -787,8 +828,15 @@ const (
|
||||||
NotifyCodePoll int32 = 1
|
NotifyCodePoll int32 = 1
|
||||||
NotifyCodeInvalInode int32 = 2
|
NotifyCodeInvalInode int32 = 2
|
||||||
NotifyCodeInvalEntry int32 = 3
|
NotifyCodeInvalEntry int32 = 3
|
||||||
|
NotifyCodeStore int32 = 4
|
||||||
|
NotifyCodeRetrieve int32 = 5
|
||||||
|
NotifyCodeDelete int32 = 6
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type NotifyPollWakeupOut struct {
|
||||||
|
Kh uint64
|
||||||
|
}
|
||||||
|
|
||||||
type NotifyInvalInodeOut struct {
|
type NotifyInvalInodeOut struct {
|
||||||
Ino uint64
|
Ino uint64
|
||||||
Off int64
|
Off int64
|
||||||
|
@ -800,3 +848,35 @@ type NotifyInvalEntryOut struct {
|
||||||
Namelen uint32
|
Namelen uint32
|
||||||
padding uint32
|
padding uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type NotifyDeleteOut struct {
|
||||||
|
Parent uint64
|
||||||
|
Child uint64
|
||||||
|
Namelen uint32
|
||||||
|
padding uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type NotifyStoreOut struct {
|
||||||
|
Nodeid uint64
|
||||||
|
Offset uint64
|
||||||
|
Size uint32
|
||||||
|
padding uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type NotifyRetrieveOut struct {
|
||||||
|
Unique uint64
|
||||||
|
Nodeid uint64
|
||||||
|
Offset uint64
|
||||||
|
Size uint32
|
||||||
|
padding uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
// Matches the size of WriteIn
|
||||||
|
type NotifyRetrieveIn struct {
|
||||||
|
dummy1 uint64
|
||||||
|
Offset uint64
|
||||||
|
Size uint32
|
||||||
|
dummy2 uint32
|
||||||
|
dummy3 uint64
|
||||||
|
dummy4 uint64
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue