diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-06-16 17:55:07 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-16 17:55:07 +0000 |
commit | 22076b98d10cc9b537f14499ca310fa0d144aaa3 (patch) | |
tree | 7b93196b564b67a12e2cbdb79d4e9cddf6e202d4 /runsc/fsgofer | |
parent | 9266d3fb35c17bd8c62b71ac3c77420067a1b9df (diff) | |
parent | bae1475603b03a38726da743430c761fb36ee338 (diff) |
Merge release-20200608.0-64-gbae147560 (automated)
Diffstat (limited to 'runsc/fsgofer')
-rw-r--r-- | runsc/fsgofer/fsgofer.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runsc/fsgofer/fsgofer.go b/runsc/fsgofer/fsgofer.go index edc239013..74977c313 100644 --- a/runsc/fsgofer/fsgofer.go +++ b/runsc/fsgofer/fsgofer.go @@ -175,8 +175,6 @@ func (a *attachPoint) makeQID(stat syscall.Stat_t) p9.QID { log.Warningf("first 8 bytes of host inode id %x will be truncated to construct virtual inode id", stat.Ino) } ino := uint64(dev)<<56 | maskedIno - log.Debugf("host inode %x on device %x mapped to virtual inode %x", stat.Ino, stat.Dev, ino) - return p9.QID{ Type: p9.FileMode(stat.Mode).QIDType(), Path: ino, |