diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2018-07-19 14:56:42 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-07-19 14:57:52 -0700 |
commit | be431d0934b8d33dcb1909527e0f9ed7eb504b6f (patch) | |
tree | 4071eb98e3ecdfa6abd77552c7e5426469027cd8 /pkg/sentry/fs/mock.go | |
parent | ea371031968095209793ea39007cfdf5a9d66d10 (diff) |
fs: Pass context to Revalidate() function.
The current revalidation logic is very simple and does not do much
introspection of the dirent being revalidated (other than looking at the type
of file).
Fancier revalidation logic is coming soon, and we need to be able to look at
the cached and uncached attributes of a given dirent, and we need a context to
perform some of these operations.
PiperOrigin-RevId: 205307351
Change-Id: If17ea1c631d8f9489c0e05a263e23d7a8a3bf159
Diffstat (limited to 'pkg/sentry/fs/mock.go')
-rw-r--r-- | pkg/sentry/fs/mock.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fs/mock.go b/pkg/sentry/fs/mock.go index b3bfa5268..dc82a2002 100644 --- a/pkg/sentry/fs/mock.go +++ b/pkg/sentry/fs/mock.go @@ -68,7 +68,7 @@ func NewMockMountSource(cache *DirentCache) *MountSource { } // Revalidate implements fs.MountSourceOperations.Revalidate. -func (n *MockMountSourceOps) Revalidate(*Dirent) bool { +func (n *MockMountSourceOps) Revalidate(context.Context, *Dirent) bool { return n.revalidate } |