[Qemu-devel] [PATCH] virtio-net: Fix a typo

Philippe Mathieu-Daudé posted 1 patch 6 years, 9 months ago
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test asan passed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190121181335.3326-1-philmd@redhat.com
Maintainers: "Michael S. Tsirkin" <mst@redhat.com>
include/hw/virtio/virtio-net.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[Qemu-devel] [PATCH] virtio-net: Fix a typo
Posted by Philippe Mathieu-Daudé 6 years, 9 months ago
Fixes: 2974e916df8
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 include/hw/virtio/virtio-net.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/hw/virtio/virtio-net.h b/include/hw/virtio/virtio-net.h
index c7ec1a755f..756eee8af0 100644
--- a/include/hw/virtio/virtio-net.h
+++ b/include/hw/virtio/virtio-net.h
@@ -94,7 +94,7 @@ typedef struct VirtioNetRscUnit {
     uint16_t payload;       /* pure payload without virtio/eth/ip/tcp */
 } VirtioNetRscUnit;
 
-/* Coalesced segmant */
+/* Coalesced segment */
 typedef struct VirtioNetRscSeg {
     QTAILQ_ENTRY(VirtioNetRscSeg) next;
     void *buf;
-- 
2.20.1


Re: [Qemu-devel] [PATCH] virtio-net: Fix a typo
Posted by Peter Maydell 6 years, 9 months ago
On Mon, 21 Jan 2019 at 18:51, Philippe Mathieu-Daudé <philmd@redhat.com> wrote:
>
> Fixes: 2974e916df8
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
>  include/hw/virtio/virtio-net.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/hw/virtio/virtio-net.h b/include/hw/virtio/virtio-net.h
> index c7ec1a755f..756eee8af0 100644
> --- a/include/hw/virtio/virtio-net.h
> +++ b/include/hw/virtio/virtio-net.h
> @@ -94,7 +94,7 @@ typedef struct VirtioNetRscUnit {
>      uint16_t payload;       /* pure payload without virtio/eth/ip/tcp */
>  } VirtioNetRscUnit;
>
> -/* Coalesced segmant */
> +/* Coalesced segment */
>  typedef struct VirtioNetRscSeg {
>      QTAILQ_ENTRY(VirtioNetRscSeg) next;
>      void *buf;
> --
> 2.20.1
>


Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

thanks
-- PMM

Re: [Qemu-devel] [Qemu-trivial] [PATCH] virtio-net: Fix a typo
Posted by Laurent Vivier 6 years, 9 months ago
On 21/01/2019 19:13, Philippe Mathieu-Daudé wrote:
> Fixes: 2974e916df8
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
>  include/hw/virtio/virtio-net.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/hw/virtio/virtio-net.h b/include/hw/virtio/virtio-net.h
> index c7ec1a755f..756eee8af0 100644
> --- a/include/hw/virtio/virtio-net.h
> +++ b/include/hw/virtio/virtio-net.h
> @@ -94,7 +94,7 @@ typedef struct VirtioNetRscUnit {
>      uint16_t payload;       /* pure payload without virtio/eth/ip/tcp */
>  } VirtioNetRscUnit;
>  
> -/* Coalesced segmant */
> +/* Coalesced segment */
>  typedef struct VirtioNetRscSeg {
>      QTAILQ_ENTRY(VirtioNetRscSeg) next;
>      void *buf;
> 


Applied to my trivial-patches branch.

Thanks,
Laurent