summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/kernel/task_syscall.go
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-04-22 23:11:45 +0000
committergVisor bot <gvisor-bot@google.com>2021-04-22 23:11:45 +0000
commit42ab6ba3f895199ebcad7093dc2f7e98133898ae (patch)
treecd28ab29468f2f8d21108df40d88d4a4377a0c76 /pkg/sentry/kernel/task_syscall.go
parentf2f926c52614691d7116ef6863aa28c385675096 (diff)
parent0a6eaed50b83a35a687699aa5e871b80605c9f46 (diff)
Merge release-20210419.0-21-g0a6eaed50 (automated)
Diffstat (limited to 'pkg/sentry/kernel/task_syscall.go')
-rw-r--r--pkg/sentry/kernel/task_syscall.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/sentry/kernel/task_syscall.go b/pkg/sentry/kernel/task_syscall.go
index 2c658d001..36855e3ec 100644
--- a/pkg/sentry/kernel/task_syscall.go
+++ b/pkg/sentry/kernel/task_syscall.go
@@ -285,6 +285,7 @@ func (*runSyscallExit) execute(t *Task) taskRunState {
// task's next run state.
func (t *Task) doVsyscall(addr hostarch.Addr, sysno uintptr) taskRunState {
vsyscallCount.Increment()
+ metric.WeirdnessMetric.Increment("vsyscall_count")
// Grab the caller up front, to make sure there's a sensible stack.
caller := t.Arch().Native(uintptr(0))