From 96d087a2e28468d0db3eafcc635f2f7757d63bd5 Mon Sep 17 00:00:00 2001 From: Andi Kleen Date: Mon, 25 Nov 2024 20:07:28 -0800 Subject: [PATCH] toplev: Fix virtualization event warning --- toplev.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toplev.py b/toplev.py index 4d62c71e..70e4aa2d 100755 --- a/toplev.py +++ b/toplev.py @@ -3808,7 +3808,7 @@ def force_pebs(ev): nnopebs = {x[0] for x in nsamp if force_pebs(x[0])} if nnopebs and not args.quiet: for o in nnopebs: - warn_no_assert("sample event %s not (currently) supported in virtualization" % o[0]) + warn_no_assert("sample event %s not (currently) supported in virtualization" % o) nsamp = [x for x in nsamp if x[0] not in nnopebs] sl = [raw_event(s[0], s[1] + "_" + clean_event(s[0]), period=True) for s in nsamp]