Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jacobsa-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
jacobsa-fuse
Commits
8e0cba22
Commit
8e0cba22
authored
Jul 23, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexported unused Flags fields.
parent
4dc22ba2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
12 deletions
+0
-12
fuseops/convert.go
fuseops/convert.go
+0
-3
fuseops/ops.go
fuseops/ops.go
+0
-9
No files found.
fuseops/convert.go
View file @
8e0cba22
...
...
@@ -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
...
...
fuseops/ops.go
View file @
8e0cba22
...
...
@@ -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).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment