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/gofer/session.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/gofer/session.go')
-rw-r--r-- | pkg/sentry/fs/gofer/session.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fs/gofer/session.go b/pkg/sentry/fs/gofer/session.go index 21dc5e08d..b6841526a 100644 --- a/pkg/sentry/fs/gofer/session.go +++ b/pkg/sentry/fs/gofer/session.go @@ -121,7 +121,7 @@ func (s *session) Destroy() { } // Revalidate returns true if the cache policy is does not allow for VFS caching. -func (s *session) Revalidate(*fs.Dirent) bool { +func (s *session) Revalidate(ctx context.Context, d *fs.Dirent) bool { return s.cachePolicy.revalidateDirent() } |