diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-12-03 23:11:51 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-12-03 23:11:51 +0000 |
commit | d8a02abc0f26e494f3a672dcff827cae3d17e937 (patch) | |
tree | 6bc7dce20696a91f2e3d5e85fa4dae85890aaba8 /pkg/sentry/fs | |
parent | ff19e9d5ec3a31f00a673f443b5c2fd70f39c50b (diff) | |
parent | 035407153989b189a3ce42df43d6f528fa95444f (diff) |
Merge release-20191114.0-56-g0354071 (automated)
Diffstat (limited to 'pkg/sentry/fs')
-rw-r--r-- | pkg/sentry/fs/proc/task.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fs/proc/task.go b/pkg/sentry/fs/proc/task.go index 87184ec67..2a598149d 100644 --- a/pkg/sentry/fs/proc/task.go +++ b/pkg/sentry/fs/proc/task.go @@ -639,7 +639,7 @@ func (i *ioData) ReadSeqFileData(ctx context.Context, h seqfile.SeqHandle) ([]se io.Accumulate(i.IOUsage()) var buf bytes.Buffer - fmt.Fprintf(&buf, "char: %d\n", io.CharsRead) + fmt.Fprintf(&buf, "rchar: %d\n", io.CharsRead) fmt.Fprintf(&buf, "wchar: %d\n", io.CharsWritten) fmt.Fprintf(&buf, "syscr: %d\n", io.ReadSyscalls) fmt.Fprintf(&buf, "syscw: %d\n", io.WriteSyscalls) |