staging: lustre: libcfs: fix aligment issue
authorJames Simmons <jsimmons@infradead.org>
Thu, 17 Nov 2016 19:35:43 +0000 (14:35 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Nov 2016 07:47:31 +0000 (08:47 +0100)
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>
drivers/staging/lustre/lnet/libcfs/workitem.c

index e98c818..84118b5 100644 (file)
@@ -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);
        }