qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] vfio: fix a typo
@ 2019-08-22  6:49 Chen Zhang via Qemu-devel
  2019-08-22  7:53 ` Li Qiang
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Chen Zhang via Qemu-devel @ 2019-08-22  6:49 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Alex Williamson

Signed-off-by: Chen Zhang <tgfbeta@me.com>
---
 hw/vfio/pci.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
index dc3479c..c5e6fe6 100644
--- a/hw/vfio/pci.c
+++ b/hw/vfio/pci.c
@@ -44,7 +44,7 @@
 #define TYPE_VFIO_PCI "vfio-pci"
 #define PCI_VFIO(obj)    OBJECT_CHECK(VFIOPCIDevice, obj, TYPE_VFIO_PCI)
 
-#define TYPE_VIFO_PCI_NOHOTPLUG "vfio-pci-nohotplug"
+#define TYPE_VFIO_PCI_NOHOTPLUG "vfio-pci-nohotplug"
 
 static void vfio_disable_interrupts(VFIOPCIDevice *vdev);
 static void vfio_mmap_set_enabled(VFIOPCIDevice *vdev, bool enabled);
@@ -3199,7 +3199,7 @@ static void vfio_pci_nohotplug_dev_class_init(ObjectClass *klass, void *data)
 }
 
 static const TypeInfo vfio_pci_nohotplug_dev_info = { 
-    .name = TYPE_VIFO_PCI_NOHOTPLUG,
+    .name = TYPE_VFIO_PCI_NOHOTPLUG,
     .parent = TYPE_VFIO_PCI,
     .instance_size = sizeof(VFIOPCIDevice),
     .class_init = vfio_pci_nohotplug_dev_class_init,
-- 
2.7.4




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

* Re: [Qemu-devel] [PATCH] vfio: fix a typo
  2019-08-22  6:49 [Qemu-devel] [PATCH] vfio: fix a typo Chen Zhang via Qemu-devel
@ 2019-08-22  7:53 ` Li Qiang
  2019-08-22  8:45 ` Philippe Mathieu-Daudé
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Li Qiang @ 2019-08-22  7:53 UTC (permalink / raw)
  To: Chen Zhang; +Cc: qemu-trivial, Alex Williamson, Qemu Developers

Chen Zhang via Qemu-devel <qemu-devel@nongnu.org> 于2019年8月22日周四 下午2:49写道:

> Signed-off-by: Chen Zhang <tgfbeta@me.com>
>


Reviewed-by: Li Qiang <liq3ea@gmail.com>



> ---
>  hw/vfio/pci.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
> index dc3479c..c5e6fe6 100644
> --- a/hw/vfio/pci.c
> +++ b/hw/vfio/pci.c
> @@ -44,7 +44,7 @@
>  #define TYPE_VFIO_PCI "vfio-pci"
>  #define PCI_VFIO(obj)    OBJECT_CHECK(VFIOPCIDevice, obj, TYPE_VFIO_PCI)
>
> -#define TYPE_VIFO_PCI_NOHOTPLUG "vfio-pci-nohotplug"
> +#define TYPE_VFIO_PCI_NOHOTPLUG "vfio-pci-nohotplug"
>
>  static void vfio_disable_interrupts(VFIOPCIDevice *vdev);
>  static void vfio_mmap_set_enabled(VFIOPCIDevice *vdev, bool enabled);
> @@ -3199,7 +3199,7 @@ static void
> vfio_pci_nohotplug_dev_class_init(ObjectClass *klass, void *data)
>  }
>
>  static const TypeInfo vfio_pci_nohotplug_dev_info = {
> -    .name = TYPE_VIFO_PCI_NOHOTPLUG,
> +    .name = TYPE_VFIO_PCI_NOHOTPLUG,
>      .parent = TYPE_VFIO_PCI,
>      .instance_size = sizeof(VFIOPCIDevice),
>      .class_init = vfio_pci_nohotplug_dev_class_init,
> --
> 2.7.4
>
>
>
>

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

* Re: [Qemu-devel] [PATCH] vfio: fix a typo
  2019-08-22  6:49 [Qemu-devel] [PATCH] vfio: fix a typo Chen Zhang via Qemu-devel
  2019-08-22  7:53 ` Li Qiang
@ 2019-08-22  8:45 ` Philippe Mathieu-Daudé
  2019-08-22  9:22 ` Cornelia Huck
  2019-08-23 15:01 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier
  3 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-08-22  8:45 UTC (permalink / raw)
  To: Chen Zhang, qemu-devel; +Cc: qemu-trivial, Alex Williamson

On 8/22/19 8:49 AM, Chen Zhang via Qemu-devel wrote:
> Signed-off-by: Chen Zhang <tgfbeta@me.com>
> ---
>  hw/vfio/pci.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
> index dc3479c..c5e6fe6 100644
> --- a/hw/vfio/pci.c
> +++ b/hw/vfio/pci.c
> @@ -44,7 +44,7 @@
>  #define TYPE_VFIO_PCI "vfio-pci"
>  #define PCI_VFIO(obj)    OBJECT_CHECK(VFIOPCIDevice, obj, TYPE_VFIO_PCI)
>  
> -#define TYPE_VIFO_PCI_NOHOTPLUG "vfio-pci-nohotplug"
> +#define TYPE_VFIO_PCI_NOHOTPLUG "vfio-pci-nohotplug"
>  
>  static void vfio_disable_interrupts(VFIOPCIDevice *vdev);
>  static void vfio_mmap_set_enabled(VFIOPCIDevice *vdev, bool enabled);
> @@ -3199,7 +3199,7 @@ static void vfio_pci_nohotplug_dev_class_init(ObjectClass *klass, void *data)
>  }
>  
>  static const TypeInfo vfio_pci_nohotplug_dev_info = { 
> -    .name = TYPE_VIFO_PCI_NOHOTPLUG,
> +    .name = TYPE_VFIO_PCI_NOHOTPLUG,
>      .parent = TYPE_VFIO_PCI,
>      .instance_size = sizeof(VFIOPCIDevice),
>      .class_init = vfio_pci_nohotplug_dev_class_init,
> 

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>


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

* Re: [Qemu-devel] [PATCH] vfio: fix a typo
  2019-08-22  6:49 [Qemu-devel] [PATCH] vfio: fix a typo Chen Zhang via Qemu-devel
  2019-08-22  7:53 ` Li Qiang
  2019-08-22  8:45 ` Philippe Mathieu-Daudé
@ 2019-08-22  9:22 ` Cornelia Huck
  2019-08-23 15:01 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier
  3 siblings, 0 replies; 5+ messages in thread
From: Cornelia Huck @ 2019-08-22  9:22 UTC (permalink / raw)
  To: Chen Zhang via Qemu-devel; +Cc: qemu-trivial, Alex Williamson, Chen Zhang

On Thu, 22 Aug 2019 14:49:09 +0800
Chen Zhang via Qemu-devel <qemu-devel@nongnu.org> wrote:

> Signed-off-by: Chen Zhang <tgfbeta@me.com>
> ---
>  hw/vfio/pci.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
> index dc3479c..c5e6fe6 100644
> --- a/hw/vfio/pci.c
> +++ b/hw/vfio/pci.c
> @@ -44,7 +44,7 @@
>  #define TYPE_VFIO_PCI "vfio-pci"
>  #define PCI_VFIO(obj)    OBJECT_CHECK(VFIOPCIDevice, obj, TYPE_VFIO_PCI)
>  
> -#define TYPE_VIFO_PCI_NOHOTPLUG "vfio-pci-nohotplug"
> +#define TYPE_VFIO_PCI_NOHOTPLUG "vfio-pci-nohotplug"
>  
>  static void vfio_disable_interrupts(VFIOPCIDevice *vdev);
>  static void vfio_mmap_set_enabled(VFIOPCIDevice *vdev, bool enabled);
> @@ -3199,7 +3199,7 @@ static void vfio_pci_nohotplug_dev_class_init(ObjectClass *klass, void *data)
>  }
>  
>  static const TypeInfo vfio_pci_nohotplug_dev_info = { 
> -    .name = TYPE_VIFO_PCI_NOHOTPLUG,
> +    .name = TYPE_VFIO_PCI_NOHOTPLUG,
>      .parent = TYPE_VFIO_PCI,
>      .instance_size = sizeof(VFIOPCIDevice),
>      .class_init = vfio_pci_nohotplug_dev_class_init,

Reviewed-by: Cornelia Huck <cohuck@redhat.com>


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

* Re: [Qemu-devel] [Qemu-trivial] [PATCH] vfio: fix a typo
  2019-08-22  6:49 [Qemu-devel] [PATCH] vfio: fix a typo Chen Zhang via Qemu-devel
                   ` (2 preceding siblings ...)
  2019-08-22  9:22 ` Cornelia Huck
@ 2019-08-23 15:01 ` Laurent Vivier
  3 siblings, 0 replies; 5+ messages in thread
From: Laurent Vivier @ 2019-08-23 15:01 UTC (permalink / raw)
  To: Chen Zhang, qemu-devel; +Cc: qemu-trivial, Alex Williamson

Le 22/08/2019 à 08:49, Chen Zhang via Qemu-trivial a écrit :
> Signed-off-by: Chen Zhang <tgfbeta@me.com>
> ---
>  hw/vfio/pci.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
> index dc3479c..c5e6fe6 100644
> --- a/hw/vfio/pci.c
> +++ b/hw/vfio/pci.c
> @@ -44,7 +44,7 @@
>  #define TYPE_VFIO_PCI "vfio-pci"
>  #define PCI_VFIO(obj)    OBJECT_CHECK(VFIOPCIDevice, obj, TYPE_VFIO_PCI)
>  
> -#define TYPE_VIFO_PCI_NOHOTPLUG "vfio-pci-nohotplug"
> +#define TYPE_VFIO_PCI_NOHOTPLUG "vfio-pci-nohotplug"
>  
>  static void vfio_disable_interrupts(VFIOPCIDevice *vdev);
>  static void vfio_mmap_set_enabled(VFIOPCIDevice *vdev, bool enabled);
> @@ -3199,7 +3199,7 @@ static void vfio_pci_nohotplug_dev_class_init(ObjectClass *klass, void *data)
>  }
>  
>  static const TypeInfo vfio_pci_nohotplug_dev_info = { 
> -    .name = TYPE_VIFO_PCI_NOHOTPLUG,
> +    .name = TYPE_VFIO_PCI_NOHOTPLUG,
>      .parent = TYPE_VFIO_PCI,
>      .instance_size = sizeof(VFIOPCIDevice),
>      .class_init = vfio_pci_nohotplug_dev_class_init,
> 

Applied to my trivial-patches branch.

Thanks,
Laurent


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

end of thread, other threads:[~2019-08-23 15:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-22  6:49 [Qemu-devel] [PATCH] vfio: fix a typo Chen Zhang via Qemu-devel
2019-08-22  7:53 ` Li Qiang
2019-08-22  8:45 ` Philippe Mathieu-Daudé
2019-08-22  9:22 ` Cornelia Huck
2019-08-23 15:01 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier

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).