[PATCH] vfio: Fix vfio_listener_log_sync function name typo

Zenghui Yu posted 1 patch 4 years, 11 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20201204014240.772-1-yuzenghui@huawei.com
Maintainers: Alex Williamson <alex.williamson@redhat.com>
hw/vfio/common.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] vfio: Fix vfio_listener_log_sync function name typo
Posted by Zenghui Yu 4 years, 11 months ago
There is an obvious typo in the function name of the .log_sync() callback.
Spell it correctly.

Signed-off-by: Zenghui Yu <yuzenghui@huawei.com>
---
 hw/vfio/common.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/vfio/common.c b/hw/vfio/common.c
index 6ff1daa763..d360d6f2da 100644
--- a/hw/vfio/common.c
+++ b/hw/vfio/common.c
@@ -1118,7 +1118,7 @@ static int vfio_sync_dirty_bitmap(VFIOContainer *container,
                        int128_get64(section->size), ram_addr);
 }
 
-static void vfio_listerner_log_sync(MemoryListener *listener,
+static void vfio_listener_log_sync(MemoryListener *listener,
         MemoryRegionSection *section)
 {
     VFIOContainer *container = container_of(listener, VFIOContainer, listener);
@@ -1136,7 +1136,7 @@ static void vfio_listerner_log_sync(MemoryListener *listener,
 static const MemoryListener vfio_memory_listener = {
     .region_add = vfio_listener_region_add,
     .region_del = vfio_listener_region_del,
-    .log_sync = vfio_listerner_log_sync,
+    .log_sync = vfio_listener_log_sync,
 };
 
 static void vfio_listener_release(VFIOContainer *container)
-- 
2.19.1


Re: [PATCH] vfio: Fix vfio_listener_log_sync function name typo
Posted by Alex Williamson 4 years, 8 months ago
On Fri, 4 Dec 2020 09:42:40 +0800
Zenghui Yu <yuzenghui@huawei.com> wrote:

> There is an obvious typo in the function name of the .log_sync() callback.
> Spell it correctly.
> 
> Signed-off-by: Zenghui Yu <yuzenghui@huawei.com>
> ---
>  hw/vfio/common.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/vfio/common.c b/hw/vfio/common.c
> index 6ff1daa763..d360d6f2da 100644
> --- a/hw/vfio/common.c
> +++ b/hw/vfio/common.c
> @@ -1118,7 +1118,7 @@ static int vfio_sync_dirty_bitmap(VFIOContainer *container,
>                         int128_get64(section->size), ram_addr);
>  }
>  
> -static void vfio_listerner_log_sync(MemoryListener *listener,
> +static void vfio_listener_log_sync(MemoryListener *listener,
>          MemoryRegionSection *section)
>  {
>      VFIOContainer *container = container_of(listener, VFIOContainer, listener);
> @@ -1136,7 +1136,7 @@ static void vfio_listerner_log_sync(MemoryListener *listener,
>  static const MemoryListener vfio_memory_listener = {
>      .region_add = vfio_listener_region_add,
>      .region_del = vfio_listener_region_del,
> -    .log_sync = vfio_listerner_log_sync,
> +    .log_sync = vfio_listener_log_sync,
>  };
>  
>  static void vfio_listener_release(VFIOContainer *container)

Sorry for the delay, queued.  Thanks,

Alex


Re: [PATCH] vfio: Fix vfio_listener_log_sync function name typo
Posted by Cornelia Huck 4 years, 11 months ago
On Fri, 4 Dec 2020 09:42:40 +0800
Zenghui Yu <yuzenghui@huawei.com> wrote:

> There is an obvious typo in the function name of the .log_sync() callback.
> Spell it correctly.
> 
> Signed-off-by: Zenghui Yu <yuzenghui@huawei.com>
> ---
>  hw/vfio/common.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

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