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
Kirill Smelkov
go-fuse
Commits
16a98c3e
Commit
16a98c3e
authored
Dec 27, 2010
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop Fuse from typename.
parent
955a1929
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
fuse/pathfilesystem.go
fuse/pathfilesystem.go
+2
-2
fuse/types.go
fuse/types.go
+1
-1
No files found.
fuse/pathfilesystem.go
View file @
16a98c3e
...
...
@@ -37,7 +37,7 @@ func inodeDataKey(parentInode uint64, name string) string {
type
PathFileSystemConnector
struct
{
fileSystem
PathF
useF
ilesystem
fileSystem
PathFilesystem
// Protects the hashmap and its contents.
lock
sync
.
Mutex
...
...
@@ -47,7 +47,7 @@ type PathFileSystemConnector struct {
nextFreeInode
uint64
}
func
NewPathFileSystemConnector
(
fs
PathF
useF
ilesystem
)
(
out
*
PathFileSystemConnector
)
{
func
NewPathFileSystemConnector
(
fs
PathFilesystem
)
(
out
*
PathFileSystemConnector
)
{
out
=
new
(
PathFileSystemConnector
)
out
.
inodePathMap
=
make
(
map
[
string
]
*
inodeData
)
out
.
inodePathMapByInode
=
make
(
map
[
uint64
]
*
inodeData
)
...
...
fuse/types.go
View file @
16a98c3e
...
...
@@ -546,7 +546,7 @@ type DEntryList struct {
offset
uint64
}
type
PathF
useF
ilesystem
interface
{
type
PathFilesystem
interface
{
GetAttr
(
name
string
)
(
*
Attr
,
Status
)
Readlink
(
name
string
)
(
string
,
Status
)
Mknod
(
name
string
,
mode
uint32
,
dev
uint32
)
Status
...
...
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