staging: lustre: ldlm: Fix warning about missing spaces

checkpatch.pl complains about a number of places where spaces were
missing. This patch fixes all of these errors.

For better readability, the warning of hitting the 80 character per
line limit in line 1349 introduced by this change is ignored
deliberately.

Signed-off-by: Andreas Ruprecht <rupran@einserver.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Andreas Ruprecht 2014-11-23 14:37:50 +01:00 committed by Greg Kroah-Hartman
parent e7ddc48c10
commit 43ee4160bb
3 changed files with 8 additions and 7 deletions

View File

@ -2082,7 +2082,8 @@ static int ldlm_chain_lock_for_replay(struct ldlm_lock *lock, void *closure)
/* we use l_pending_chain here, because it's unused on clients. */ /* we use l_pending_chain here, because it's unused on clients. */
LASSERTF(list_empty(&lock->l_pending_chain), LASSERTF(list_empty(&lock->l_pending_chain),
"lock %p next %p prev %p\n", "lock %p next %p prev %p\n",
lock, &lock->l_pending_chain.next,&lock->l_pending_chain.prev); lock, &lock->l_pending_chain.next,
&lock->l_pending_chain.prev);
/* bug 9573: don't replay locks left after eviction, or /* bug 9573: don't replay locks left after eviction, or
* bug 17614: locks being actively cancelled. Get a reference * bug 17614: locks being actively cancelled. Get a reference
* on a lock so that it does not disappear under us (e.g. due to cancel) * on a lock so that it does not disappear under us (e.g. due to cancel)