On Wed, 2024-11-06 at 16:32 +0800, Binbin Wu wrote:It doesn't have a complete definition of struct kvm_vcpu in
Does making it 'static inline' and moving to kvm_host.h work?static void kvm_complete_hypercall_exit(struct kvm_vcpu *vcpu, int ret_reg,If this is going to be the final version, it would be better to make it
unsigned long ret, bool op_64_bit)
{
if (!op_64_bit)
ret = (u32)ret;
kvm_register_write_raw(vcpu, ret_reg, ret);
++vcpu->stat.hypercalls;
}
public, and export the symbol, so that TDX code can reuse it.
kvm_register_write_raw(), and kvm_register_mark_dirty() which is called by
kvm_register_write_raw()), are both 'static inline'. Seems we can get rid of
export by making it 'static inline'.