kernel-janitors.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][next] virtio_blk: Fix spelling mistake: "advertisted" -> "advertised"
@ 2021-10-25 10:22 Colin Ian King
  2021-10-25 11:56 ` Max Gurtovoy
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Colin Ian King @ 2021-10-25 10:22 UTC (permalink / raw)
  To: Michael S . Tsirkin, Jason Wang, Paolo Bonzini, Stefan Hajnoczi,
	Jens Axboe, virtualization, linux-block
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in a dev_err error message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/block/virtio_blk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
index c336d9bb9105..9dd0099d2bd2 100644
--- a/drivers/block/virtio_blk.c
+++ b/drivers/block/virtio_blk.c
@@ -560,7 +560,7 @@ static int init_vq(struct virtio_blk *vblk)
 	if (err)
 		num_vqs = 1;
 	if (!err && !num_vqs) {
-		dev_err(&vdev->dev, "MQ advertisted but zero queues reported\n");
+		dev_err(&vdev->dev, "MQ advertised but zero queues reported\n");
 		return -EINVAL;
 	}
 
-- 
2.32.0


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

* Re: [PATCH][next] virtio_blk: Fix spelling mistake: "advertisted" -> "advertised"
  2021-10-25 10:22 [PATCH][next] virtio_blk: Fix spelling mistake: "advertisted" -> "advertised" Colin Ian King
@ 2021-10-25 11:56 ` Max Gurtovoy
  2021-10-26  2:29 ` Jason Wang
  2021-10-28  8:18 ` Stefan Hajnoczi
  2 siblings, 0 replies; 4+ messages in thread
From: Max Gurtovoy @ 2021-10-25 11:56 UTC (permalink / raw)
  To: Colin Ian King, Michael S . Tsirkin, Jason Wang, Paolo Bonzini,
	Stefan Hajnoczi, Jens Axboe, virtualization, linux-block
  Cc: kernel-janitors, linux-kernel


On 10/25/2021 1:22 PM, Colin Ian King wrote:
> There is a spelling mistake in a dev_err error message. Fix it.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>   drivers/block/virtio_blk.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> index c336d9bb9105..9dd0099d2bd2 100644
> --- a/drivers/block/virtio_blk.c
> +++ b/drivers/block/virtio_blk.c
> @@ -560,7 +560,7 @@ static int init_vq(struct virtio_blk *vblk)
>   	if (err)
>   		num_vqs = 1;
>   	if (!err && !num_vqs) {
> -		dev_err(&vdev->dev, "MQ advertisted but zero queues reported\n");
> +		dev_err(&vdev->dev, "MQ advertised but zero queues reported\n");

Looks good,

Reviewed-by: Max Gurtovoy <mgurtovoy@nvidia.com>

>   		return -EINVAL;
>   	}
>   

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

* Re: [PATCH][next] virtio_blk: Fix spelling mistake: "advertisted" -> "advertised"
  2021-10-25 10:22 [PATCH][next] virtio_blk: Fix spelling mistake: "advertisted" -> "advertised" Colin Ian King
  2021-10-25 11:56 ` Max Gurtovoy
@ 2021-10-26  2:29 ` Jason Wang
  2021-10-28  8:18 ` Stefan Hajnoczi
  2 siblings, 0 replies; 4+ messages in thread
From: Jason Wang @ 2021-10-26  2:29 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Michael S . Tsirkin, Paolo Bonzini, Stefan Hajnoczi, Jens Axboe,
	virtualization, linux-block, kernel-janitors, linux-kernel

On Mon, Oct 25, 2021 at 6:22 PM Colin Ian King
<colin.i.king@googlemail.com> wrote:
>
> There is a spelling mistake in a dev_err error message. Fix it.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---

Acked-by: Jason Wang <jasowang@redhat.com>

>  drivers/block/virtio_blk.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> index c336d9bb9105..9dd0099d2bd2 100644
> --- a/drivers/block/virtio_blk.c
> +++ b/drivers/block/virtio_blk.c
> @@ -560,7 +560,7 @@ static int init_vq(struct virtio_blk *vblk)
>         if (err)
>                 num_vqs = 1;
>         if (!err && !num_vqs) {
> -               dev_err(&vdev->dev, "MQ advertisted but zero queues reported\n");
> +               dev_err(&vdev->dev, "MQ advertised but zero queues reported\n");
>                 return -EINVAL;
>         }
>
> --
> 2.32.0
>


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

* Re: [PATCH][next] virtio_blk: Fix spelling mistake: "advertisted" -> "advertised"
  2021-10-25 10:22 [PATCH][next] virtio_blk: Fix spelling mistake: "advertisted" -> "advertised" Colin Ian King
  2021-10-25 11:56 ` Max Gurtovoy
  2021-10-26  2:29 ` Jason Wang
@ 2021-10-28  8:18 ` Stefan Hajnoczi
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2021-10-28  8:18 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Michael S . Tsirkin, Jason Wang, Paolo Bonzini, Jens Axboe,
	virtualization, linux-block, kernel-janitors, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 343 bytes --]

On Mon, Oct 25, 2021 at 11:22:40AM +0100, Colin Ian King wrote:
> There is a spelling mistake in a dev_err error message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  drivers/block/virtio_blk.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2021-10-28  8:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-25 10:22 [PATCH][next] virtio_blk: Fix spelling mistake: "advertisted" -> "advertised" Colin Ian King
2021-10-25 11:56 ` Max Gurtovoy
2021-10-26  2:29 ` Jason Wang
2021-10-28  8:18 ` Stefan Hajnoczi

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