diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-05-03 13:10:17 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-05-05 10:19:43 -0700 |
commit | d14a108d510ec66f6db15509b9d7d2f0b6208145 (patch) | |
tree | 9875cf9c3738aee662e817f236eafe58fe06cda6 /net | |
parent | 594725db0ce11b2fd70f672d7540fa43c7f2f627 (diff) | |
download | linux-stable-d14a108d510ec66f6db15509b9d7d2f0b6208145.tar.gz linux-stable-d14a108d510ec66f6db15509b9d7d2f0b6208145.tar.bz2 linux-stable-d14a108d510ec66f6db15509b9d7d2f0b6208145.zip |
net: rds: fix spelling mistake "syctl" -> "sysctl"
There is a spelling mistake in a pr_warn warning. Fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/rds/tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |