diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-04-27 00:42:00 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-04-27 00:42:00 +0000 |
commit | 8ae55bf31f429dc00137c41094fb174df510dc6a (patch) | |
tree | d339fb2af4edb91b8821432361e785e20ceb9faf /pkg/sentry/kernel | |
parent | 0955522b1de29833e632e429e3667be402566f18 (diff) | |
parent | 5b207fe7834d9c6541bd99bf75e3dfeebce2d9d5 (diff) |
Merge release-20210419.0-33-g5b207fe78 (automated)
Diffstat (limited to 'pkg/sentry/kernel')
-rw-r--r-- | pkg/sentry/kernel/task_syscall.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/pkg/sentry/kernel/task_syscall.go b/pkg/sentry/kernel/task_syscall.go index 36855e3ec..601fc0d3a 100644 --- a/pkg/sentry/kernel/task_syscall.go +++ b/pkg/sentry/kernel/task_syscall.go @@ -30,8 +30,6 @@ import ( "gvisor.dev/gvisor/pkg/syserror" ) -var vsyscallCount = metric.MustCreateNewUint64Metric("/kernel/vsyscall_count", false /* sync */, "Number of times vsyscalls were invoked by the application") - // SyscallRestartBlock represents the restart block for a syscall restartable // with a custom function. It encapsulates the state required to restart a // syscall across a S/R. @@ -284,7 +282,6 @@ func (*runSyscallExit) execute(t *Task) taskRunState { // indicated by an execution fault at address addr. doVsyscall returns the // 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. |