2019-05-03 12:13:54

by Colin King

[permalink] [raw]
Subject: [PATCH] net: rds: fix spelling mistake "syctl" -> "sysctl"

From: Colin Ian King <[email protected]>

There is a spelling mistake in a pr_warn warning. Fix it.

Signed-off-by: Colin Ian King <[email protected]>
---
net/rds/tcp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/rds/tcp.c b/net/rds/tcp.c
index faf726e00e27..66121bc6f34e 100644
--- a/net/rds/tcp.c
+++ b/net/rds/tcp.c
@@ -551,7 +551,7 @@ static __net_init int rds_tcp_init_net(struct net *net)
tbl = kmemdup(rds_tcp_sysctl_table,
sizeof(rds_tcp_sysctl_table), GFP_KERNEL);
if (!tbl) {
- pr_warn("could not set allocate syctl table\n");
+ pr_warn("could not set allocate sysctl table\n");
return -ENOMEM;
}
rtn->ctl_table = tbl;
--
2.20.1


2019-05-03 17:19:39

by Santosh Shilimkar

[permalink] [raw]
Subject: Re: [PATCH] net: rds: fix spelling mistake "syctl" -> "sysctl"

On 5/3/2019 5:10 AM, Colin King wrote:
> From: Colin Ian King <[email protected]>
>
> There is a spelling mistake in a pr_warn warning. Fix it.
>
> Signed-off-by: Colin Ian King <[email protected]>
> ---
Acked-by: Santosh Shilimkar <[email protected]>

2019-05-05 17:23:36

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] net: rds: fix spelling mistake "syctl" -> "sysctl"

From: Colin King <[email protected]>
Date: Fri, 3 May 2019 13:10:17 +0100

> From: Colin Ian King <[email protected]>
>
> There is a spelling mistake in a pr_warn warning. Fix it.
>
> Signed-off-by: Colin Ian King <[email protected]>

Applied.