Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Kirill Smelkov
wendelin.core
Commits
9c95dbd9
Commit
9c95dbd9
authored
Feb 12, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
5ade934c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
6 deletions
+10
-6
wcfs/client/wcfs.cpp
wcfs/client/wcfs.cpp
+1
-1
wcfs/client/wcfs.h
wcfs/client/wcfs.h
+2
-0
wcfs/internal/race/race_norace.go
wcfs/internal/race/race_norace.go
+2
-2
wcfs/internal/race/race_race.go
wcfs/internal/race/race_race.go
+2
-2
wcfs/wcfs.go
wcfs/wcfs.go
+3
-1
No files found.
wcfs/client/wcfs.cpp
View file @
9c95dbd9
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
// Package wcfs provides WCFS client integrated with user-space virtual memory manager.
// Package wcfs provides WCFS client integrated with user-space virtual memory manager.
// See wcfs.h for package overview.
// See wcfs.h for package overview.
//
wcfs client organization.
//
Wcfs client organization
//
//
// - need to maintain pinner map registry
// - need to maintain pinner map registry
//
//
...
...
wcfs/client/wcfs.h
View file @
9c95dbd9
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
// Package wcfs provides WCFS client integrated with user-space virtual memory manager.
// Package wcfs provides WCFS client integrated with user-space virtual memory manager.
//
//
// XXX view service provided
//
// - `WCFS` represents filesystem-level connection to wcfs server.
// - `WCFS` represents filesystem-level connection to wcfs server.
// - `Conn` represents logical connection that provides view of data on wcfs
// - `Conn` represents logical connection that provides view of data on wcfs
// filesystem as of particular database state.
// filesystem as of particular database state.
...
...
wcfs/
misc
_norace.go
→
wcfs/
internal/race/race
_norace.go
View file @
9c95dbd9
...
@@ -19,6 +19,6 @@
...
@@ -19,6 +19,6 @@
// +build !race
// +build !race
package
main
package
race
const
raceBuil
d
=
false
const
Enable
d
=
false
wcfs/
misc
_race.go
→
wcfs/
internal/race/race
_race.go
View file @
9c95dbd9
...
@@ -19,6 +19,6 @@
...
@@ -19,6 +19,6 @@
// +build race
// +build race
package
main
package
race
const
raceBuil
d
=
true
const
Enable
d
=
true
wcfs/wcfs.go
View file @
9c95dbd9
...
@@ -507,6 +507,8 @@ import (
...
@@ -507,6 +507,8 @@ import (
"github.com/hanwen/go-fuse/fuse"
"github.com/hanwen/go-fuse/fuse"
"github.com/hanwen/go-fuse/fuse/nodefs"
"github.com/hanwen/go-fuse/fuse/nodefs"
"github.com/pkg/errors"
"github.com/pkg/errors"
"./internal/race"
)
)
// Root represents root of wcfs filesystem.
// Root represents root of wcfs filesystem.
...
@@ -2287,7 +2289,7 @@ func _main() (err error) {
...
@@ -2287,7 +2289,7 @@ func _main() (err error) {
log
.
Infof
(
"start %q %q"
,
mntpt
,
zurl
)
log
.
Infof
(
"start %q %q"
,
mntpt
,
zurl
)
gover
:=
"(built with "
+
runtime
.
Version
()
gover
:=
"(built with "
+
runtime
.
Version
()
if
race
Buil
d
{
if
race
.
Enable
d
{
gover
+=
" -race"
gover
+=
" -race"
}
}
gover
+=
")"
gover
+=
")"
...
...
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