[Qemu-devel] [PATCH] kvm: Fix typo in header of kvm_device_access()

Greg Kurz posted 1 patch 6 years, 2 months ago
Test FreeBSD passed
Test docker-clang@ubuntu passed
Test docker-quick@centos7 passed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/156829664683.2070256.13400788010568373502.stgit@bahia.tls.ibm.com
Maintainers: Paolo Bonzini <pbonzini@redhat.com>
include/sysemu/kvm.h |    2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[Qemu-devel] [PATCH] kvm: Fix typo in header of kvm_device_access()
Posted by Greg Kurz 6 years, 2 months ago
Signed-off-by: Greg Kurz <groug@kaod.org>
---
 include/sysemu/kvm.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h
index 909bcd77cf82..fd674772ab31 100644
--- a/include/sysemu/kvm.h
+++ b/include/sysemu/kvm.h
@@ -308,7 +308,7 @@ int kvm_vm_check_attr(KVMState *s, uint32_t group, uint64_t attr);
 int kvm_device_check_attr(int fd, uint32_t group, uint64_t attr);
 
 /**
- * kvm_device_access - set or get value of a specific vm attribute
+ * kvm_device_access - set or get value of a specific device attribute
  * @fd: The device file descriptor
  * @group: the group
  * @attr: the attribute of that group to set or get


Re: [Qemu-devel] [Qemu-trivial] [PATCH] kvm: Fix typo in header of kvm_device_access()
Posted by Laurent Vivier 6 years, 1 month ago
Le 12/09/2019 à 15:57, Greg Kurz a écrit :
> Signed-off-by: Greg Kurz <groug@kaod.org>
> ---
>  include/sysemu/kvm.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h
> index 909bcd77cf82..fd674772ab31 100644
> --- a/include/sysemu/kvm.h
> +++ b/include/sysemu/kvm.h
> @@ -308,7 +308,7 @@ int kvm_vm_check_attr(KVMState *s, uint32_t group, uint64_t attr);
>  int kvm_device_check_attr(int fd, uint32_t group, uint64_t attr);
>  
>  /**
> - * kvm_device_access - set or get value of a specific vm attribute
> + * kvm_device_access - set or get value of a specific device attribute
>   * @fd: The device file descriptor
>   * @group: the group
>   * @attr: the attribute of that group to set or get
> 
> 

Reviewed-by: Laurent Vivier <laurent@vivier.eu>

Re: [Qemu-devel] [Qemu-trivial] [PATCH] kvm: Fix typo in header of kvm_device_access()
Posted by Laurent Vivier 6 years, 1 month ago
Le 12/09/2019 à 15:57, Greg Kurz a écrit :
> Signed-off-by: Greg Kurz <groug@kaod.org>
> ---
>  include/sysemu/kvm.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h
> index 909bcd77cf82..fd674772ab31 100644
> --- a/include/sysemu/kvm.h
> +++ b/include/sysemu/kvm.h
> @@ -308,7 +308,7 @@ int kvm_vm_check_attr(KVMState *s, uint32_t group, uint64_t attr);
>  int kvm_device_check_attr(int fd, uint32_t group, uint64_t attr);
>  
>  /**
> - * kvm_device_access - set or get value of a specific vm attribute
> + * kvm_device_access - set or get value of a specific device attribute
>   * @fd: The device file descriptor
>   * @group: the group
>   * @attr: the attribute of that group to set or get
> 
> 

Applied to my trivial-patches branch.

Thanks,
Laurent