diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-12-12 21:23:50 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-12-12 21:23:50 +0000 |
commit | f0b295134c90ff33886f9afa8022c677ba2025b1 (patch) | |
tree | f88c9606f5e0d4a7a51165b259087ba9f50ffd78 /pkg/sentry/memmap | |
parent | c166476f2ec3b8bae5590c74e61865eb6aa5a408 (diff) | |
parent | 93d429d5b1e3801fb4c29568bcd40d6854c9fe94 (diff) |
Merge release-20191210.0-27-g93d429d (automated)
Diffstat (limited to 'pkg/sentry/memmap')
-rw-r--r-- | pkg/sentry/memmap/memmap.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pkg/sentry/memmap/memmap.go b/pkg/sentry/memmap/memmap.go index 03b99aaea..16a722a13 100644 --- a/pkg/sentry/memmap/memmap.go +++ b/pkg/sentry/memmap/memmap.go @@ -18,7 +18,6 @@ package memmap import ( "fmt" - "gvisor.dev/gvisor/pkg/refs" "gvisor.dev/gvisor/pkg/sentry/context" "gvisor.dev/gvisor/pkg/sentry/platform" "gvisor.dev/gvisor/pkg/sentry/usermem" @@ -235,8 +234,11 @@ type InvalidateOpts struct { // coincidental; fs.File implements MappingIdentity, and some // fs.InodeOperations implement Mappable.) type MappingIdentity interface { - // MappingIdentity is reference-counted. - refs.RefCounter + // IncRef increments the MappingIdentity's reference count. + IncRef() + + // DecRef decrements the MappingIdentity's reference count. + DecRef() // MappedName returns the application-visible name shown in // /proc/[pid]/maps. |