diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-11-27 02:23:28 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-11-27 02:23:28 +0000 |
commit | 71e5ce0d31623f55021f9935db29029b2ab5523a (patch) | |
tree | 5adcb6f0e1c8de11051ac09ef6c1c7bf5766bc83 /pkg/sentry/fs/tty/slave.go | |
parent | 38a00b7cdbd1d3f0b3fe49157e402b32f5c989e8 (diff) | |
parent | 20279c305ece6a458006999c8dafc5672ca92803 (diff) |
Merge release-20191114.0-39-g20279c3 (automated)
Diffstat (limited to 'pkg/sentry/fs/tty/slave.go')
-rw-r--r-- | pkg/sentry/fs/tty/slave.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/sentry/fs/tty/slave.go b/pkg/sentry/fs/tty/slave.go index 4cbea0367..2a51e6bab 100644 --- a/pkg/sentry/fs/tty/slave.go +++ b/pkg/sentry/fs/tty/slave.go @@ -31,7 +31,6 @@ import ( // +stateify savable type slaveInodeOperations struct { fsutil.SimpleFileInode - fsutil.InodeNoopTruncate // d is the containing dir. d *dirInodeOperations @@ -73,6 +72,11 @@ func (si *slaveInodeOperations) Release(ctx context.Context) { si.t.DecRef() } +// Truncate implements fs.InodeOperations.Truncate. +func (slaveInodeOperations) Truncate(context.Context, *fs.Inode, int64) error { + return nil +} + // GetFile implements fs.InodeOperations.GetFile. // // This may race with destruction of the terminal. If the terminal is gone, it |