Commit fc831a90 authored by Rashika Kheria's avatar Rashika Kheria Committed by Greg Kroah-Hartman

Staging: lustre: Fix Space Prohibition before '++' in conrpc.c

This patch fixes the following checkpatch.pl error in conrpc.c-
ERROR: space prohibited before that '++'
Signed-off-by: default avatarRashika Kheria <rashika.kheria@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 98d1bbdd
...@@ -573,7 +573,7 @@ lstcon_rpc_trans_destroy(lstcon_rpc_trans_t *trans) ...@@ -573,7 +573,7 @@ lstcon_rpc_trans_destroy(lstcon_rpc_trans_t *trans)
crpc->crp_node = NULL; crpc->crp_node = NULL;
crpc->crp_trans = NULL; crpc->crp_trans = NULL;
list_del_init(&crpc->crp_link); list_del_init(&crpc->crp_link);
count ++; count++;
spin_unlock(&rpc->crpc_lock); spin_unlock(&rpc->crpc_lock);
...@@ -741,7 +741,7 @@ lstcon_dstnodes_prep(lstcon_group_t *grp, int idx, ...@@ -741,7 +741,7 @@ lstcon_dstnodes_prep(lstcon_group_t *grp, int idx,
list_for_each_entry(ndl, &grp->grp_ndl_list, ndl_link) { list_for_each_entry(ndl, &grp->grp_ndl_list, ndl_link) {
nd = ndl->ndl_node; nd = ndl->ndl_node;
if (i < start) { if (i < start) {
i ++; i++;
continue; continue;
} }
...@@ -1264,7 +1264,7 @@ lstcon_rpc_pinger(void *arg) ...@@ -1264,7 +1264,7 @@ lstcon_rpc_pinger(void *arg)
lstcon_rpc_trans_addreq(trans, crpc); lstcon_rpc_trans_addreq(trans, crpc);
lstcon_rpc_post(crpc); lstcon_rpc_post(crpc);
count ++; count++;
} }
if (console_session.ses_expired) { if (console_session.ses_expired) {
......
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