diff options
| author | James Simmons <jsimmons@infradead.org> | 2016-11-17 14:35:43 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-11-18 08:47:31 +0100 |
| commit | 20d63a7adfd15dbf7a58fec4be8203345720bd6d (patch) | |
| tree | 489a38a23bc7f0ac447799ec075abe11898338d0 | |
| parent | dace63054678e88fd8e6119e00f87905006c4783 (diff) | |
| download | linux-20d63a7adfd15dbf7a58fec4be8203345720bd6d.tar.gz linux-20d63a7adfd15dbf7a58fec4be8203345720bd6d.tar.bz2 linux-20d63a7adfd15dbf7a58fec4be8203345720bd6d.zip | |
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.c | 2 |
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); } |
