fusego/ops.go

49 lines
1.2 KiB
Go
Raw Permalink Normal View History

2015-07-27 07:09:51 +03:00
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2015-07-27 07:09:56 +03:00
package fuse
2015-07-27 07:09:51 +03:00
import (
2015-07-27 07:13:08 +03:00
"github.com/jacobsa/fuse/fuseops"
2015-07-27 07:09:51 +03:00
"github.com/jacobsa/fuse/internal/fusekernel"
)
2015-07-27 08:12:43 +03:00
// A sentinel used for unknown ops. The user is expected to respond with a
// non-nil error.
type unknownOp struct {
2015-08-06 09:25:43 +03:00
OpCode uint32
Inode fuseops.InodeID
2015-07-27 08:12:43 +03:00
}
// Causes us to cancel the associated context.
2015-07-27 08:52:13 +03:00
type interruptOp struct {
2015-07-27 07:47:29 +03:00
FuseID uint64
}
// Required in order to mount on Linux and OS X.
2015-07-27 08:52:13 +03:00
type initOp struct {
2015-07-27 07:47:29 +03:00
// In
Kernel fusekernel.Protocol
// In/out
Flags fusekernel.InitFlags
2015-07-27 07:47:29 +03:00
// Out
Library fusekernel.Protocol
MaxReadahead uint32
MaxBackground uint16
MaxWrite uint32
MaxPages uint16
2015-07-27 07:47:29 +03:00
}