Unexported unused Flags fields.

geesefs-0-30-9
Aaron Jacobs 2015-07-23 16:22:05 +10:00
parent 4dc22ba2e7
commit 8e0cba22dd
2 changed files with 0 additions and 12 deletions

View File

@ -109,7 +109,6 @@ func Convert(
Parent: InodeID(typed.Header.Node),
Name: typed.Name,
Mode: typed.Mode,
Flags: typed.Flags,
}
io = to
co = &to.commonOp
@ -159,7 +158,6 @@ func Convert(
to := &OpenDirOp{
bfReq: typed,
Inode: InodeID(typed.Header.Node),
Flags: typed.Flags,
}
io = to
co = &to.commonOp
@ -167,7 +165,6 @@ func Convert(
to := &OpenFileOp{
bfReq: typed,
Inode: InodeID(typed.Header.Node),
Flags: typed.Flags,
}
io = to
co = &to.commonOp

View File

@ -273,9 +273,6 @@ type CreateFileOp struct {
Name string
Mode os.FileMode
// Flags for the open operation.
Flags fuseshim.OpenFlags
// Set by the file system: information about the inode that was created.
//
// The lookup count for the inode is implicitly incremented. See notes on
@ -470,9 +467,6 @@ type OpenDirOp struct {
// The ID of the inode to be opened.
Inode InodeID
// Mode and options flags.
Flags fuseshim.OpenFlags
// Set by the file system: an opaque ID that will be echoed in follow-up
// calls for this directory using the same struct file in the kernel. In
// practice this usually means follow-up calls using the file descriptor
@ -633,9 +627,6 @@ type OpenFileOp struct {
// The ID of the inode to be opened.
Inode InodeID
// Mode and options flags.
Flags fuseshim.OpenFlags
// An opaque ID that will be echoed in follow-up calls for this file using
// the same struct file in the kernel. In practice this usually means
// follow-up calls using the file descriptor returned by open(2).