diff options
author | Fabricio Voznika <fvoznika@google.com> | 2018-10-31 11:27:10 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-10-31 11:28:27 -0700 |
commit | ccc3d7ca11a2a623587c651a6690aaa46d2c2665 (patch) | |
tree | baa04e2e5ebe4a1ee638dbfbbd86dbcbc613696c /runsc/fsgofer/BUILD | |
parent | e9dbd5ab67bc31e59910930e6c1b551c0fd05ee6 (diff) |
Make lazy open the mode of operation for fsgofer
With recent changes to 9P server, path walks are now safe inside
open, create, rename and setattr calls. To simplify the code, remove
the lazyopen=false mode that was used for bind mounts, and converge
all mounts to using lazy open.
PiperOrigin-RevId: 219508628
Change-Id: I073e7e1e2e9a9972d150eaf4cb29e553997a9b76
Diffstat (limited to 'runsc/fsgofer/BUILD')
-rw-r--r-- | runsc/fsgofer/BUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runsc/fsgofer/BUILD b/runsc/fsgofer/BUILD index f28e4fa77..ab12388ab 100644 --- a/runsc/fsgofer/BUILD +++ b/runsc/fsgofer/BUILD @@ -17,6 +17,7 @@ go_library( "//pkg/fd", "//pkg/log", "//pkg/p9", + "//pkg/syserr", "@org_golang_x_sys//unix:go_default_library", ], ) |