All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH blktests] Documentation: Fix typo nvme-trtype -> nvme_trtype
@ 2022-05-11  3:00 Xiao Yang
  2022-05-11  3:42 ` Yi Zhang
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Xiao Yang @ 2022-05-11  3:00 UTC (permalink / raw)
  To: osandov, yi.zhang; +Cc: linux-block, Xiao Yang

Fixes: 3be78490def5 ("Documentation: add document for nvme-rdma nvmeof-mp srp tests")
Signed-off-by: Xiao Yang <yangx.jy@fujitsu.com>
---
 Documentation/running-tests.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/running-tests.md b/Documentation/running-tests.md
index 713d7ba..586be0b 100644
--- a/Documentation/running-tests.md
+++ b/Documentation/running-tests.md
@@ -103,12 +103,12 @@ RUN_ZONED_TESTS=1
 Most of these tests will use the rdma_rxe (soft-RoCE) driver by default. The siw (soft-iWARP) driver is also supported.
 ```sh
 To use the rdma_rxe driver:
-nvme-trtype=rdma ./check nvme/
+nvme_trtype=rdma ./check nvme/
 ./check nvmeof-mp/
 ./check srp/
 
 To use the siw driver:
-use_siw=1 nvme-trtype=rdma ./check nvme/
+use_siw=1 nvme_trtype=rdma ./check nvme/
 use_siw=1 ./check nvmeof-mp/
 use_siw=1 ./check srp/
 ```
-- 
2.25.4




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

* Re: [PATCH blktests] Documentation: Fix typo nvme-trtype -> nvme_trtype
  2022-05-11  3:00 [PATCH blktests] Documentation: Fix typo nvme-trtype -> nvme_trtype Xiao Yang
@ 2022-05-11  3:42 ` Yi Zhang
  2022-05-17  7:00 ` Shinichiro Kawasaki
  2022-05-17 23:46 ` Omar Sandoval
  2 siblings, 0 replies; 4+ messages in thread
From: Yi Zhang @ 2022-05-11  3:42 UTC (permalink / raw)
  To: Xiao Yang; +Cc: osandov, linux-block

Thanks for the fix.

Reviewed-by: Yi Zhang <yi.zhang@redhat.com>

On Wed, May 11, 2022 at 11:01 AM Xiao Yang <yangx.jy@fujitsu.com> wrote:
>
> Fixes: 3be78490def5 ("Documentation: add document for nvme-rdma nvmeof-mp srp tests")
> Signed-off-by: Xiao Yang <yangx.jy@fujitsu.com>
> ---
>  Documentation/running-tests.md | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/running-tests.md b/Documentation/running-tests.md
> index 713d7ba..586be0b 100644
> --- a/Documentation/running-tests.md
> +++ b/Documentation/running-tests.md
> @@ -103,12 +103,12 @@ RUN_ZONED_TESTS=1
>  Most of these tests will use the rdma_rxe (soft-RoCE) driver by default. The siw (soft-iWARP) driver is also supported.
>  ```sh
>  To use the rdma_rxe driver:
> -nvme-trtype=rdma ./check nvme/
> +nvme_trtype=rdma ./check nvme/
>  ./check nvmeof-mp/
>  ./check srp/
>
>  To use the siw driver:
> -use_siw=1 nvme-trtype=rdma ./check nvme/
> +use_siw=1 nvme_trtype=rdma ./check nvme/
>  use_siw=1 ./check nvmeof-mp/
>  use_siw=1 ./check srp/
>  ```
> --
> 2.25.4
>
>
>


-- 
Best Regards,
  Yi Zhang


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

* Re: [PATCH blktests] Documentation: Fix typo nvme-trtype -> nvme_trtype
  2022-05-11  3:00 [PATCH blktests] Documentation: Fix typo nvme-trtype -> nvme_trtype Xiao Yang
  2022-05-11  3:42 ` Yi Zhang
@ 2022-05-17  7:00 ` Shinichiro Kawasaki
  2022-05-17 23:46 ` Omar Sandoval
  2 siblings, 0 replies; 4+ messages in thread
From: Shinichiro Kawasaki @ 2022-05-17  7:00 UTC (permalink / raw)
  To: Xiao Yang; +Cc: osandov, yi.zhang, linux-block

On May 11, 2022 / 11:00, Xiao Yang wrote:
> Fixes: 3be78490def5 ("Documentation: add document for nvme-rdma nvmeof-mp srp tests")
> Signed-off-by: Xiao Yang <yangx.jy@fujitsu.com>

It's good to fix this trap :)

Reviewed-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>

-- 
Best Regards,
Shin'ichiro Kawasaki

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

* Re: [PATCH blktests] Documentation: Fix typo nvme-trtype -> nvme_trtype
  2022-05-11  3:00 [PATCH blktests] Documentation: Fix typo nvme-trtype -> nvme_trtype Xiao Yang
  2022-05-11  3:42 ` Yi Zhang
  2022-05-17  7:00 ` Shinichiro Kawasaki
@ 2022-05-17 23:46 ` Omar Sandoval
  2 siblings, 0 replies; 4+ messages in thread
From: Omar Sandoval @ 2022-05-17 23:46 UTC (permalink / raw)
  To: Xiao Yang; +Cc: osandov, yi.zhang, linux-block

On Wed, May 11, 2022 at 11:00:59AM +0800, Xiao Yang wrote:
> Fixes: 3be78490def5 ("Documentation: add document for nvme-rdma nvmeof-mp srp tests")
> Signed-off-by: Xiao Yang <yangx.jy@fujitsu.com>
> ---
>  Documentation/running-tests.md | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Thanks, applied.

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

end of thread, other threads:[~2022-05-17 23:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-11  3:00 [PATCH blktests] Documentation: Fix typo nvme-trtype -> nvme_trtype Xiao Yang
2022-05-11  3:42 ` Yi Zhang
2022-05-17  7:00 ` Shinichiro Kawasaki
2022-05-17 23:46 ` Omar Sandoval

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.