From: Andreas Schwab <schwab@suse.de>
To: kvm-riscv@lists.infradead.org
Subject: [PATCH] tools/kvm_stat: add support for riscv
Date: Mon, 14 Aug 2023 12:02:43 +0200 [thread overview]
Message-ID: <mvmbkfadjr0.fsf@suse.de> (raw)
Signed-off-by: Andreas Schwab <schwab@suse.de>
---
tools/kvm/kvm_stat/kvm_stat | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/tools/kvm/kvm_stat/kvm_stat b/tools/kvm/kvm_stat/kvm_stat
index 15bf00e79e3f..05220b9d07dc 100755
--- a/tools/kvm/kvm_stat/kvm_stat
+++ b/tools/kvm/kvm_stat/kvm_stat
@@ -320,6 +320,8 @@ class Arch(object):
return ArchA64()
elif machine.startswith('s390'):
return ArchS390()
+ elif machine.startswith('riscv'):
+ return ArchRISCV()
else:
# X86_64
for line in open('/proc/cpuinfo'):
@@ -396,6 +398,18 @@ class ArchS390(Arch):
return 'exit_instruction'
+class ArchRISCV(Arch):
+ def __init__(self):
+ self.sc_perf_evt_open = 241
+ self.ioctl_numbers = IOCTL_NUMBERS
+ self.exit_reason_field = None
+ self.exit_reasons = None
+
+ def debugfs_is_child(self, field):
+ """ Returns name of parent if 'field' is a child, None otherwise """
+ return None
+
+
ARCH = Arch.get_arch()
--
2.41.0
--
Andreas Schwab, SUSE Labs, schwab at suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."
WARNING: multiple messages have this Message-ID (diff)
From: Andreas Schwab <schwab@suse.de>
To: kvm-riscv@lists.infradead.org
Cc: linux-riscv@lists.infradead.org, kvm@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH] tools/kvm_stat: add support for riscv
Date: Mon, 14 Aug 2023 12:02:43 +0200 [thread overview]
Message-ID: <mvmbkfadjr0.fsf@suse.de> (raw)
Signed-off-by: Andreas Schwab <schwab@suse.de>
---
tools/kvm/kvm_stat/kvm_stat | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/tools/kvm/kvm_stat/kvm_stat b/tools/kvm/kvm_stat/kvm_stat
index 15bf00e79e3f..05220b9d07dc 100755
--- a/tools/kvm/kvm_stat/kvm_stat
+++ b/tools/kvm/kvm_stat/kvm_stat
@@ -320,6 +320,8 @@ class Arch(object):
return ArchA64()
elif machine.startswith('s390'):
return ArchS390()
+ elif machine.startswith('riscv'):
+ return ArchRISCV()
else:
# X86_64
for line in open('/proc/cpuinfo'):
@@ -396,6 +398,18 @@ class ArchS390(Arch):
return 'exit_instruction'
+class ArchRISCV(Arch):
+ def __init__(self):
+ self.sc_perf_evt_open = 241
+ self.ioctl_numbers = IOCTL_NUMBERS
+ self.exit_reason_field = None
+ self.exit_reasons = None
+
+ def debugfs_is_child(self, field):
+ """ Returns name of parent if 'field' is a child, None otherwise """
+ return None
+
+
ARCH = Arch.get_arch()
--
2.41.0
--
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
WARNING: multiple messages have this Message-ID (diff)
From: Andreas Schwab <schwab@suse.de>
To: kvm-riscv@lists.infradead.org
Cc: linux-riscv@lists.infradead.org, kvm@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH] tools/kvm_stat: add support for riscv
Date: Mon, 14 Aug 2023 12:02:43 +0200 [thread overview]
Message-ID: <mvmbkfadjr0.fsf@suse.de> (raw)
Signed-off-by: Andreas Schwab <schwab@suse.de>
---
tools/kvm/kvm_stat/kvm_stat | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/tools/kvm/kvm_stat/kvm_stat b/tools/kvm/kvm_stat/kvm_stat
index 15bf00e79e3f..05220b9d07dc 100755
--- a/tools/kvm/kvm_stat/kvm_stat
+++ b/tools/kvm/kvm_stat/kvm_stat
@@ -320,6 +320,8 @@ class Arch(object):
return ArchA64()
elif machine.startswith('s390'):
return ArchS390()
+ elif machine.startswith('riscv'):
+ return ArchRISCV()
else:
# X86_64
for line in open('/proc/cpuinfo'):
@@ -396,6 +398,18 @@ class ArchS390(Arch):
return 'exit_instruction'
+class ArchRISCV(Arch):
+ def __init__(self):
+ self.sc_perf_evt_open = 241
+ self.ioctl_numbers = IOCTL_NUMBERS
+ self.exit_reason_field = None
+ self.exit_reasons = None
+
+ def debugfs_is_child(self, field):
+ """ Returns name of parent if 'field' is a child, None otherwise """
+ return None
+
+
ARCH = Arch.get_arch()
--
2.41.0
--
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."
next reply other threads:[~2023-08-14 10:02 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-14 10:02 Andreas Schwab [this message]
2023-08-14 10:02 ` [PATCH] tools/kvm_stat: add support for riscv Andreas Schwab
2023-08-14 10:02 ` Andreas Schwab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=mvmbkfadjr0.fsf@suse.de \
--to=schwab@suse.de \
--cc=kvm-riscv@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.