diff options
author | Gavin Shan <gshan@redhat.com> | 2022-11-10 18:49:09 +0800 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2022-11-10 13:11:57 +0000 |
commit | e8a18565e59303ac12c626a161d72bd890bd2062 (patch) | |
tree | fa7d3aceebdb2f86bc2ad6ae73cb0b20188e104d /include/linux/kvm_dirty_ring.h | |
parent | cf87ac739e488055a6046a410caa8f4da108948f (diff) |
KVM: Move declaration of kvm_cpu_dirty_log_size() to kvm_dirty_ring.h
Not all architectures like ARM64 need to override the function. Move
its declaration to kvm_dirty_ring.h to avoid the following compiling
warning on ARM64 when the feature is enabled.
arch/arm64/kvm/../../../virt/kvm/dirty_ring.c:14:12: \
warning: no previous prototype for 'kvm_cpu_dirty_log_size' \
[-Wmissing-prototypes] \
int __weak kvm_cpu_dirty_log_size(void)
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Gavin Shan <gshan@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20221110104914.31280-3-gshan@redhat.com
Diffstat (limited to 'include/linux/kvm_dirty_ring.h')
-rw-r--r-- | include/linux/kvm_dirty_ring.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/kvm_dirty_ring.h b/include/linux/kvm_dirty_ring.h index 9c13c4c3d30c..199ead37b104 100644 --- a/include/linux/kvm_dirty_ring.h +++ b/include/linux/kvm_dirty_ring.h @@ -66,6 +66,7 @@ static inline void kvm_dirty_ring_free(struct kvm_dirty_ring *ring) #else /* CONFIG_HAVE_KVM_DIRTY_RING */ +int kvm_cpu_dirty_log_size(void); u32 kvm_dirty_ring_get_rsvd_entries(void); int kvm_dirty_ring_alloc(struct kvm_dirty_ring *ring, int index, u32 size); |