summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Simmons <jsimmons@infradead.org>2016-11-17 22:35:43 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-11-18 10:47:31 +0300
commit20d63a7adfd15dbf7a58fec4be8203345720bd6d (patch)
tree489a38a23bc7f0ac447799ec075abe11898338d0
parentdace63054678e88fd8e6119e00f87905006c4783 (diff)
downloadlinux-20d63a7adfd15dbf7a58fec4be8203345720bd6d.tar.xz
staging: lustre: libcfs: fix aligment issue
Make alignment match open parenthesis for parameters to wait_event_interruptible_exclusive() call. Signed-off-by: James Simmons <jsimmons@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/lustre/lnet/libcfs/workitem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lnet/libcfs/workitem.c b/drivers/staging/lustre/lnet/libcfs/workitem.c
index e98c818a14fb..84118b5d1f25 100644
--- a/drivers/staging/lustre/lnet/libcfs/workitem.c
+++ b/drivers/staging/lustre/lnet/libcfs/workitem.c
@@ -273,7 +273,7 @@ static int cfs_wi_scheduler(void *arg)
spin_unlock(&sched->ws_lock);
rc = wait_event_interruptible_exclusive(sched->ws_waitq,
- !cfs_wi_sched_cansleep(sched));
+ !cfs_wi_sched_cansleep(sched));
spin_lock(&sched->ws_lock);
}