Commit 8e0cba22 authored by Aaron Jacobs's avatar Aaron Jacobs

Unexported unused Flags fields.

parent 4dc22ba2
......@@ -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
......
......@@ -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).
......
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