projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad6d6b9
)
KVM: x86/mmu_audit: Remove unused "level" of audit_spte_after_sync()
author
Jinrong Liang
<cloudliang@tencent.com>
Tue, 25 Jan 2022 09:58:55 +0000
(17:58 +0800)
committer
Paolo Bonzini
<pbonzini@redhat.com>
Thu, 10 Feb 2022 18:47:11 +0000
(13:47 -0500)
The "int level" parameter of audit_spte_after_sync() is not used,
so remove it. No functional change intended.
Signed-off-by: Jinrong Liang <cloudliang@tencent.com>
Message-Id: <
20220125095909
.38122-6-cloudliang@tencent.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/mmu/mmu_audit.c
patch
|
blob
|
history
diff --git
a/arch/x86/kvm/mmu/mmu_audit.c
b/arch/x86/kvm/mmu/mmu_audit.c
index 9e7dcf999f080502b37b6f16623eec7188fed0c0..f31fdb874f1f404a209fce0605d2eaced0f80403 100644
(file)
--- a/
arch/x86/kvm/mmu/mmu_audit.c
+++ b/
arch/x86/kvm/mmu/mmu_audit.c
@@
-163,7
+163,7
@@
static void audit_sptes_have_rmaps(struct kvm_vcpu *vcpu, u64 *sptep, int level)
inspect_spte_has_rmap(vcpu->kvm, sptep);
}
-static void audit_spte_after_sync(struct kvm_vcpu *vcpu, u64 *sptep
, int level
)
+static void audit_spte_after_sync(struct kvm_vcpu *vcpu, u64 *sptep)
{
struct kvm_mmu_page *sp = sptep_to_sp(sptep);
@@
-225,7
+225,7
@@
static void audit_spte(struct kvm_vcpu *vcpu, u64 *sptep, int level)
{
audit_sptes_have_rmaps(vcpu, sptep, level);
audit_mappings(vcpu, sptep, level);
- audit_spte_after_sync(vcpu, sptep
, level
);
+ audit_spte_after_sync(vcpu, sptep);
}
static void audit_vcpu_spte(struct kvm_vcpu *vcpu)