linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] KVM: fix checkpatch.pl errors in kvm/async_pf.h
@ 2015-06-16 11:33 Kevin Mulvey
  2015-06-16 11:34 ` [PATCH 2/2] KVM: fix checkpatch.pl errors in kvm/coalesced_mmio.h Kevin Mulvey
  2015-06-17 11:47 ` [PATCH 1/2] KVM: fix checkpatch.pl errors in kvm/async_pf.h Paolo Bonzini
  0 siblings, 2 replies; 3+ messages in thread
From: Kevin Mulvey @ 2015-06-16 11:33 UTC (permalink / raw)
  To: Gleb Natapov, Paolo Bonzini, kvm, linux-kernel; +Cc: Kevin Mulvey

fix brace spacing

Signed-off-by: Kevin Mulvey <kmulvey@linux.com>
---
 virt/kvm/async_pf.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/virt/kvm/async_pf.h b/virt/kvm/async_pf.h
index e7ef6447..ec4cfa2 100644
--- a/virt/kvm/async_pf.h
+++ b/virt/kvm/async_pf.h
@@ -29,8 +29,8 @@ void kvm_async_pf_deinit(void);
 void kvm_async_pf_vcpu_init(struct kvm_vcpu *vcpu);
 #else
 #define kvm_async_pf_init() (0)
-#define kvm_async_pf_deinit() do{}while(0)
-#define kvm_async_pf_vcpu_init(C) do{}while(0)
+#define kvm_async_pf_deinit() do {} while (0)
+#define kvm_async_pf_vcpu_init(C) do {} while (0)
 #endif
 
 #endif
-- 
2.4.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] KVM: fix checkpatch.pl errors in kvm/coalesced_mmio.h
  2015-06-16 11:33 [PATCH 1/2] KVM: fix checkpatch.pl errors in kvm/async_pf.h Kevin Mulvey
@ 2015-06-16 11:34 ` Kevin Mulvey
  2015-06-17 11:47 ` [PATCH 1/2] KVM: fix checkpatch.pl errors in kvm/async_pf.h Paolo Bonzini
  1 sibling, 0 replies; 3+ messages in thread
From: Kevin Mulvey @ 2015-06-16 11:34 UTC (permalink / raw)
  To: Gleb Natapov, Paolo Bonzini, kvm, linux-kernel; +Cc: Kevin Mulvey

Tabs rather than spaces

Signed-off-by: Kevin Mulvey <kmulvey@linux.com>
---
 virt/kvm/coalesced_mmio.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/virt/kvm/coalesced_mmio.h b/virt/kvm/coalesced_mmio.h
index b280c20..5cbf190 100644
--- a/virt/kvm/coalesced_mmio.h
+++ b/virt/kvm/coalesced_mmio.h
@@ -24,9 +24,9 @@ struct kvm_coalesced_mmio_dev {
 int kvm_coalesced_mmio_init(struct kvm *kvm);
 void kvm_coalesced_mmio_free(struct kvm *kvm);
 int kvm_vm_ioctl_register_coalesced_mmio(struct kvm *kvm,
-                                       struct kvm_coalesced_mmio_zone *zone);
+																				struct kvm_coalesced_mmio_zone *zone);
 int kvm_vm_ioctl_unregister_coalesced_mmio(struct kvm *kvm,
-                                         struct kvm_coalesced_mmio_zone *zone);
+																				struct kvm_coalesced_mmio_zone *zone);
 
 #else
 
-- 
2.4.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] KVM: fix checkpatch.pl errors in kvm/async_pf.h
  2015-06-16 11:33 [PATCH 1/2] KVM: fix checkpatch.pl errors in kvm/async_pf.h Kevin Mulvey
  2015-06-16 11:34 ` [PATCH 2/2] KVM: fix checkpatch.pl errors in kvm/coalesced_mmio.h Kevin Mulvey
@ 2015-06-17 11:47 ` Paolo Bonzini
  1 sibling, 0 replies; 3+ messages in thread
From: Paolo Bonzini @ 2015-06-17 11:47 UTC (permalink / raw)
  To: Kevin Mulvey, Gleb Natapov, kvm, linux-kernel; +Cc: Kevin Mulvey



On 16/06/2015 13:33, Kevin Mulvey wrote:
> fix brace spacing
> 
> Signed-off-by: Kevin Mulvey <kmulvey@linux.com>
> ---
>  virt/kvm/async_pf.h | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/virt/kvm/async_pf.h b/virt/kvm/async_pf.h
> index e7ef6447..ec4cfa2 100644
> --- a/virt/kvm/async_pf.h
> +++ b/virt/kvm/async_pf.h
> @@ -29,8 +29,8 @@ void kvm_async_pf_deinit(void);
>  void kvm_async_pf_vcpu_init(struct kvm_vcpu *vcpu);
>  #else
>  #define kvm_async_pf_init() (0)
> -#define kvm_async_pf_deinit() do{}while(0)
> -#define kvm_async_pf_vcpu_init(C) do{}while(0)
> +#define kvm_async_pf_deinit() do {} while (0)
> +#define kvm_async_pf_vcpu_init(C) do {} while (0)
>  #endif
>  
>  #endif
> 

Applied both, thanks.

Paolo

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-06-17 11:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-16 11:33 [PATCH 1/2] KVM: fix checkpatch.pl errors in kvm/async_pf.h Kevin Mulvey
2015-06-16 11:34 ` [PATCH 2/2] KVM: fix checkpatch.pl errors in kvm/coalesced_mmio.h Kevin Mulvey
2015-06-17 11:47 ` [PATCH 1/2] KVM: fix checkpatch.pl errors in kvm/async_pf.h Paolo Bonzini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).