summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fsimpl/fuse/BUILD
diff options
context:
space:
mode:
authorJinmou Li <jinmli@google.com>2020-09-03 18:41:26 +0000
committerAndrei Vagin <avagin@gmail.com>2020-09-16 12:19:30 -0700
commitf1219ec5f17b10f18d7d5e6605ea27ecba40c409 (patch)
tree534694b19326b01ec837e3c90fe7c65bbd48da6f /pkg/sentry/fsimpl/fuse/BUILD
parent2fbbe3b76864bc5b42f05d84166008b25e599bdb (diff)
Refactor FUSE connection for readability and structure
This change decouples the code that is weakly tied to the connection struct from connection.go, rename variables and files with more meaningful choices, adds detailed comments, explains lock orders, and adds other minor improvement to make the existing FUSE code more readable and more organized. Purpose is to avoid too much code in one file and provide better structure for the future commits.
Diffstat (limited to 'pkg/sentry/fsimpl/fuse/BUILD')
-rw-r--r--pkg/sentry/fsimpl/fuse/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fsimpl/fuse/BUILD b/pkg/sentry/fsimpl/fuse/BUILD
index 5085d0521..5b60b1277 100644
--- a/pkg/sentry/fsimpl/fuse/BUILD
+++ b/pkg/sentry/fsimpl/fuse/BUILD
@@ -30,11 +30,11 @@ go_library(
name = "fuse",
srcs = [
"connection.go",
+ "connection_control.go",
"dev.go",
"directory.go",
"file.go",
"fusefs.go",
- "init.go",
"inode_refs.go",
"read_write.go",
"register.go",