Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-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
Levin Zimmermann
go-fuse
Commits
34b6d99b
Commit
34b6d99b
authored
Aug 14, 2010
by
Ivan Krasin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added struct Owner to hold Uid, Gid. Added struct Identity to hold Owner and Pid
parent
8bbcdb23
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
39 deletions
+45
-39
fuse/types.go
fuse/types.go
+45
-39
No files found.
fuse/types.go
View file @
34b6d99b
...
...
@@ -209,13 +209,22 @@ type Attr struct {
Ctimensec
uint32
Mode
uint32
Nlink
uint32
Uid
uint32
Gid
uint32
Owner
Rdev
uint32
Blksize
uint32
Padding
uint32
}
type
Owner
struct
{
Uid
uint32
Gid
uint32
}
type
Identity
struct
{
Owner
Pid
uint32
}
type
Kstatfs
struct
{
Blocks
uint64
Bfree
uint64
...
...
@@ -298,8 +307,7 @@ type SetAttrIn struct {
Unused3
uint32
Mode
uint32
Unused4
uint32
Uid
uint32
Gid
uint32
Owner
Unused5
uint32
}
...
...
@@ -491,9 +499,7 @@ type InHeader struct {
Opcode
uint32
Unique
uint64
NodeId
uint64
Uid
uint32
Gid
uint32
Pid
uint32
Identity
Padding
uint32
}
...
...
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