Browse Source

staging/lustre/o2iblnd: Add missing space

checkpatch highlighted missing space before assignment
for lock variable.

+       spinlock_t *lock= &kiblnd_data.kib_connd_lock;

Signed-off-by: Oleg Drokin <green@linuxhacker.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Oleg Drokin 8 years ago
parent
commit
8773159a97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c

+ 1 - 1
drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c

@@ -3276,7 +3276,7 @@ kiblnd_disconnect_conn(struct kib_conn *conn)
 int
 kiblnd_connd(void *arg)
 {
-	spinlock_t *lock= &kiblnd_data.kib_connd_lock;
+	spinlock_t *lock = &kiblnd_data.kib_connd_lock;
 	wait_queue_t wait;
 	unsigned long flags;
 	struct kib_conn *conn;