2018-02-09 12:15:43

by Colin King

[permalink] [raw]
Subject: [PATCH][V2] CIFS: SMBD: fix spelling mistake: "faield" and "legnth"

From: Colin Ian King <[email protected]>

Trivial fix to spelling mistake in log_rdma_send and log_rdma_mr
message text.

Signed-off-by: Colin Ian King <[email protected]>
---
fs/cifs/smbdirect.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/cifs/smbdirect.c b/fs/cifs/smbdirect.c
index 91710eb571fb..5aa0b54b32ce 100644
--- a/fs/cifs/smbdirect.c
+++ b/fs/cifs/smbdirect.c
@@ -1025,7 +1025,7 @@ static int smbd_post_send(struct smbd_connection *info,

for (i = 0; i < request->num_sge; i++) {
log_rdma_send(INFO,
- "rdma_request sge[%d] addr=%llu legnth=%u\n",
+ "rdma_request sge[%d] addr=%llu length=%u\n",
i, request->sge[0].addr, request->sge[0].length);
ib_dma_sync_single_for_device(
info->id->device,
@@ -2295,7 +2295,7 @@ static void smbd_mr_recovery_work(struct work_struct *work)
rc = ib_dereg_mr(smbdirect_mr->mr);
if (rc) {
log_rdma_mr(ERR,
- "ib_dereg_mr faield rc=%x\n",
+ "ib_dereg_mr failed rc=%x\n",
rc);
smbd_disconnect_rdma_connection(info);
}
--
2.15.1



2018-02-09 12:49:36

by Aurélien Aptel

[permalink] [raw]
Subject: Re: [PATCH][V2] CIFS: SMBD: fix spelling mistake: "faield" and "legnth"


Reviewed-by: Aurelien Aptel <[email protected]>

--
Aurélien Aptel / SUSE Labs Samba Team
GPG: 1839 CB5F 9F5B FB9B AA97 8C99 03C8 A49B 521B D5D3
SUSE Linux GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
GF: Felix Imendörffer, Jane Smithard, Graham Norton, HRB 21284 (AG Nürnberg)

2018-02-09 23:58:25

by Steve French

[permalink] [raw]
Subject: Re: [PATCH][V2] CIFS: SMBD: fix spelling mistake: "faield" and "legnth"

merged into cifs-2.6.git for-next

On Fri, Feb 9, 2018 at 6:14 AM, Colin King <[email protected]> wrote:
> From: Colin Ian King <[email protected]>
>
> Trivial fix to spelling mistake in log_rdma_send and log_rdma_mr
> message text.
>
> Signed-off-by: Colin Ian King <[email protected]>
> ---
> fs/cifs/smbdirect.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/fs/cifs/smbdirect.c b/fs/cifs/smbdirect.c
> index 91710eb571fb..5aa0b54b32ce 100644
> --- a/fs/cifs/smbdirect.c
> +++ b/fs/cifs/smbdirect.c
> @@ -1025,7 +1025,7 @@ static int smbd_post_send(struct smbd_connection *info,
>
> for (i = 0; i < request->num_sge; i++) {
> log_rdma_send(INFO,
> - "rdma_request sge[%d] addr=%llu legnth=%u\n",
> + "rdma_request sge[%d] addr=%llu length=%u\n",
> i, request->sge[0].addr, request->sge[0].length);
> ib_dma_sync_single_for_device(
> info->id->device,
> @@ -2295,7 +2295,7 @@ static void smbd_mr_recovery_work(struct work_struct *work)
> rc = ib_dereg_mr(smbdirect_mr->mr);
> if (rc) {
> log_rdma_mr(ERR,
> - "ib_dereg_mr faield rc=%x\n",
> + "ib_dereg_mr failed rc=%x\n",
> rc);
> smbd_disconnect_rdma_connection(info);
> }
> --
> 2.15.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html



--
Thanks,

Steve