Commit a1caff6d authored by Samuel Domínguez's avatar Samuel Domínguez Committed by Greg Kroah-Hartman

staging: lustre: lnet: lnet: fixed space coding style issues

Fixed a coding style issue with spaces between function names and arguments:

func (x) -> func(x)
Signed-off-by: default avatarSamuel Dominguez <samuel.dominguez.lorenzo@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cc922722
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#include <linux/lnet/lib-lnet.h> #include <linux/lnet/lib-lnet.h>
void void
lnet_build_unlink_event (lnet_libmd_t *md, lnet_event_t *ev) lnet_build_unlink_event(lnet_libmd_t *md, lnet_event_t *ev)
{ {
memset(ev, 0, sizeof(*ev)); memset(ev, 0, sizeof(*ev));
...@@ -362,7 +362,7 @@ lnet_complete_msg_locked(lnet_msg_t *msg, int cpt) ...@@ -362,7 +362,7 @@ lnet_complete_msg_locked(lnet_msg_t *msg, int cpt)
int rc; int rc;
int status = msg->msg_ev.status; int status = msg->msg_ev.status;
LASSERT (msg->msg_onactivelist); LASSERT(msg->msg_onactivelist);
if (status == 0 && msg->msg_ack) { if (status == 0 && msg->msg_ack) {
/* Only send an ACK if the PUT completed successfully */ /* Only send an ACK if the PUT completed successfully */
...@@ -432,7 +432,7 @@ lnet_complete_msg_locked(lnet_msg_t *msg, int cpt) ...@@ -432,7 +432,7 @@ lnet_complete_msg_locked(lnet_msg_t *msg, int cpt)
} }
void void
lnet_finalize (lnet_ni_t *ni, lnet_msg_t *msg, int status) lnet_finalize(lnet_ni_t *ni, lnet_msg_t *msg, int status)
{ {
struct lnet_msg_container *container; struct lnet_msg_container *container;
int my_slot; int my_slot;
...@@ -440,7 +440,7 @@ lnet_finalize (lnet_ni_t *ni, lnet_msg_t *msg, int status) ...@@ -440,7 +440,7 @@ lnet_finalize (lnet_ni_t *ni, lnet_msg_t *msg, int status)
int rc; int rc;
int i; int i;
LASSERT (!in_interrupt ()); LASSERT(!in_interrupt());
if (msg == NULL) if (msg == NULL)
return; return;
......
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