ext: boilerplate code.

Renamed ext4 to ext since we are targeting ext(2/3/4).
Removed fs.go since we are targeting VFS2.
Added ext.go with filesystem struct.

PiperOrigin-RevId: 257689775
This commit is contained in:
Ayush Ranjan
2019-07-11 15:05:36 -07:00
committed by gVisor bot
parent a018b229b5
commit 5242face2e
24 changed files with 62 additions and 76 deletions
+11
View File
@@ -0,0 +1,11 @@
package(licenses = ["notice"])
load("//tools/go_stateify:defs.bzl", "go_library")
go_library(
name = "ext",
srcs = ["ext.go"],
importpath = "gvisor.dev/gvisor/pkg/sentry/fs/ext",
visibility = ["//pkg/sentry:internal"],
deps = ["//pkg/sentry/fs/ext/disklayout"],
)
@@ -21,7 +21,8 @@ go_library(
"superblock_old.go",
"test_utils.go",
],
importpath = "gvisor.dev/gvisor/pkg/sentry/fs/ext4/disklayout",
importpath = "gvisor.dev/gvisor/pkg/sentry/fs/ext/disklayout",
visibility = ["//pkg/sentry:internal"],
deps = [
"//pkg/abi/linux",
"//pkg/binary",

Some files were not shown because too many files have changed in this diff Show More