All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] KVM: x86/mmu: Variable type completion
@ 2022-08-08 15:16 Xin Gao
  0 siblings, 0 replies; only message in thread
From: Xin Gao @ 2022-08-08 15:16 UTC (permalink / raw)
  To: linux-kernel; +Cc: Xin Gao

'unsigned int' is better than 'unsigned', which has several changes.

Signed-off-by: Xin Gao <gaoxin@cdjrlc.com>
---
 tools/lib/traceevent/plugins/plugin_kvm.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/lib/traceevent/plugins/plugin_kvm.c b/tools/lib/traceevent/plugins/plugin_kvm.c
index 9ce7b4b68e3f..068d4b8cfdd3 100644
--- a/tools/lib/traceevent/plugins/plugin_kvm.c
+++ b/tools/lib/traceevent/plugins/plugin_kvm.c
@@ -225,7 +225,7 @@ static struct str_values svm_exit_reasons[] = {
 };
 
 static struct isa_exit_reasons {
-	unsigned isa;
+	unsigned int isa;
 	struct str_values *strings;
 } isa_exit_reasons[] = {
 	{ .isa = 1, .strings = vmx_exit_reasons },
@@ -233,7 +233,7 @@ static struct isa_exit_reasons {
 	{ }
 };
 
-static const char *find_exit_reason(unsigned isa, int val)
+static const char *find_exit_reason(unsigned int isa, int val)
 {
 	struct str_values *strings = NULL;
 	int i;
@@ -358,7 +358,7 @@ static int kvm_nested_vmexit_handler(struct trace_seq *s, struct tep_record *rec
 }
 
 union kvm_mmu_page_role {
-	unsigned word;
+	unsigned int word;
 	struct {
 		unsigned level:4;
 		unsigned cr4_pae:1;
-- 
2.30.2


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-08-08 15:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-08 15:16 [PATCH] KVM: x86/mmu: Variable type completion Xin Gao

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.