Re: [PATCH v3 2/4] x86/kvm: Change print code to use pr_*() format

2019-10-03 Thread Zhenzhong Duan
On 2019/10/3 1:15, Sean Christopherson wrote: On Mon, Sep 30, 2019 at 08:44:37PM +0800, Zhenzhong Duan wrote: pr_*() is preferred than printk(KERN_* ...), after change all the print in arch/x86/kernel/kvm.c will have "KVM: xxx" style. No functional change. Suggested-by: Vitaly Kuznetsov

Re: [PATCH v3 2/4] x86/kvm: Change print code to use pr_*() format

2019-10-02 Thread Sean Christopherson
On Mon, Sep 30, 2019 at 08:44:37PM +0800, Zhenzhong Duan wrote: > pr_*() is preferred than printk(KERN_* ...), after change all the print > in arch/x86/kernel/kvm.c will have "KVM: xxx" style. > > No functional change. > > Suggested-by: Vitaly Kuznetsov This wasn't really suggested by Vitaly,

[PATCH v3 2/4] x86/kvm: Change print code to use pr_*() format

2019-10-01 Thread Zhenzhong Duan
pr_*() is preferred than printk(KERN_* ...), after change all the print in arch/x86/kernel/kvm.c will have "KVM: xxx" style. No functional change. Suggested-by: Vitaly Kuznetsov Signed-off-by: Zhenzhong Duan Cc: Paolo Bonzini Cc: Radim Krcmar Cc: Sean Christopherson Cc: Vitaly Kuznetsov