summaryrefslogtreecommitdiffstats
path: root/net/rds/sysctl.c
diff options
context:
space:
mode:
authorJoshua Houghton2016-06-18 17:46:31 +0200
committerDavid S. Miller2016-06-19 06:34:09 +0200
commit5c3da57d70f1ef1d9b60900b84a74d77a9cf0774 (patch)
tree21dc769db725780191eca09406969756d5ab84e9 /net/rds/sysctl.c
parentAX.25: Close socket connection on session completion (diff)
downloadkernel-qcow2-linux-5c3da57d70f1ef1d9b60900b84a74d77a9cf0774.tar.gz
kernel-qcow2-linux-5c3da57d70f1ef1d9b60900b84a74d77a9cf0774.tar.xz
kernel-qcow2-linux-5c3da57d70f1ef1d9b60900b84a74d77a9cf0774.zip
net: rds: fix coding style issues
Fix coding style issues in the following files: ib_cm.c: add space loop.c: convert spaces to tabs sysctl.c: add space tcp.h: convert spaces to tabs tcp_connect.c:remove extra indentation in switch statement tcp_recv.c: convert spaces to tabs tcp_send.c: convert spaces to tabs transport.c: move brace up one line on for statement Signed-off-by: Joshua Houghton <josh@awful.name> Acked-by: Santosh Shilimkar <santosh.shilimkar@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds/sysctl.c')
-rw-r--r--net/rds/sysctl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/rds/sysctl.c b/net/rds/sysctl.c
index c173f69e1479..e381bbcd9cc1 100644
--- a/net/rds/sysctl.c
+++ b/net/rds/sysctl.c
@@ -102,7 +102,8 @@ int rds_sysctl_init(void)
rds_sysctl_reconnect_min = msecs_to_jiffies(1);
rds_sysctl_reconnect_min_jiffies = rds_sysctl_reconnect_min;
- rds_sysctl_reg_table = register_net_sysctl(&init_net,"net/rds", rds_sysctl_rds_table);
+ rds_sysctl_reg_table =
+ register_net_sysctl(&init_net, "net/rds", rds_sysctl_rds_table);
if (!rds_sysctl_reg_table)
return -ENOMEM;
return 0;