Commit 991cc8d6 authored by Masaru Nomura's avatar Masaru Nomura Committed by Greg Kroah-Hartman

staging: lustre: socklnd: Add a required space

Added a required space before open brace and parenthsis
in socklnd.c to meet kernel coding style.
Signed-off-by: default avatarMasaru Nomura <massa.nomura@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a1f659d4
...@@ -1567,7 +1567,7 @@ ksocknal_terminate_conn (ksock_conn_t *conn) ...@@ -1567,7 +1567,7 @@ ksocknal_terminate_conn (ksock_conn_t *conn)
conn->ksnc_tx_ready = 1; conn->ksnc_tx_ready = 1;
if (!conn->ksnc_tx_scheduled && if (!conn->ksnc_tx_scheduled &&
!list_empty(&conn->ksnc_tx_queue)){ !list_empty(&conn->ksnc_tx_queue)) {
list_add_tail (&conn->ksnc_tx_list, list_add_tail (&conn->ksnc_tx_list,
&sched->kss_tx_conns); &sched->kss_tx_conns);
conn->ksnc_tx_scheduled = 1; conn->ksnc_tx_scheduled = 1;
...@@ -2094,7 +2094,7 @@ ksocknal_ctl(lnet_ni_t *ni, unsigned int cmd, void *arg) ...@@ -2094,7 +2094,7 @@ ksocknal_ctl(lnet_ni_t *ni, unsigned int cmd, void *arg)
struct libcfs_ioctl_data *data = arg; struct libcfs_ioctl_data *data = arg;
int rc; int rc;
switch(cmd) { switch (cmd) {
case IOC_LIBCFS_GET_INTERFACE: { case IOC_LIBCFS_GET_INTERFACE: {
ksock_net_t *net = ni->ni_data; ksock_net_t *net = ni->ni_data;
ksock_interface_t *iface; ksock_interface_t *iface;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment