Skip to content

Commit 923d1e6

Browse files
author
Fox Snowpatch
committed
1 parent 35d5936 commit 923d1e6

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

arch/powerpc/kvm/powerpc.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -2538,9 +2538,8 @@ void kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu, struct dentry *debugfs_
25382538
vcpu->kvm->arch.kvm_ops->create_vcpu_debugfs(vcpu, debugfs_dentry);
25392539
}
25402540

2541-
int kvm_arch_create_vm_debugfs(struct kvm *kvm)
2541+
void kvm_arch_create_vm_debugfs(struct kvm *kvm)
25422542
{
25432543
if (kvm->arch.kvm_ops->create_vm_debugfs)
25442544
kvm->arch.kvm_ops->create_vm_debugfs(kvm);
2545-
return 0;
25462545
}

arch/x86/kvm/debugfs.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,8 @@ static const struct file_operations mmu_rmaps_stat_fops = {
189189
.release = kvm_mmu_rmaps_stat_release,
190190
};
191191

192-
int kvm_arch_create_vm_debugfs(struct kvm *kvm)
192+
void kvm_arch_create_vm_debugfs(struct kvm *kvm)
193193
{
194194
debugfs_create_file("mmu_rmaps_stat", 0644, kvm->debugfs_dentry, kvm,
195195
&mmu_rmaps_stat_fops);
196-
return 0;
197196
}

include/linux/kvm_host.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,7 @@ bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu);
15071507
bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu);
15081508
int kvm_arch_post_init_vm(struct kvm *kvm);
15091509
void kvm_arch_pre_destroy_vm(struct kvm *kvm);
1510-
int kvm_arch_create_vm_debugfs(struct kvm *kvm);
1510+
void kvm_arch_create_vm_debugfs(struct kvm *kvm);
15111511

15121512
#ifndef __KVM_HAVE_ARCH_VM_ALLOC
15131513
/*

virt/kvm/kvm_main.c

+2-6
Original file line numberDiff line numberDiff line change
@@ -1150,10 +1150,7 @@ static int kvm_create_vm_debugfs(struct kvm *kvm, const char *fdname)
11501150
&stat_fops_per_vm);
11511151
}
11521152

1153-
ret = kvm_arch_create_vm_debugfs(kvm);
1154-
if (ret)
1155-
goto out_err;
1156-
1153+
kvm_arch_create_vm_debugfs(kvm);
11571154
return 0;
11581155
out_err:
11591156
kvm_destroy_vm_debugfs(kvm);
@@ -1183,9 +1180,8 @@ void __weak kvm_arch_pre_destroy_vm(struct kvm *kvm)
11831180
* Cleanup should be automatic done in kvm_destroy_vm_debugfs() recursively, so
11841181
* a per-arch destroy interface is not needed.
11851182
*/
1186-
int __weak kvm_arch_create_vm_debugfs(struct kvm *kvm)
1183+
void __weak kvm_arch_create_vm_debugfs(struct kvm *kvm)
11871184
{
1188-
return 0;
11891185
}
11901186

11911187
static struct kvm *kvm_create_vm(unsigned long type, const char *fdname)

0 commit comments

Comments
 (0)