Skip to content

Commit

Permalink
staging/lustre/o2iblnd: Fix misspelling intialized->intialized
Browse files Browse the repository at this point in the history
Highlighted by checkpatch:
+       if (!ps->ps_net) /* intialized? */

Signed-off-by: Oleg Drokin <green@linuxhacker.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Oleg Drokin authored and Greg Kroah-Hartman committed Dec 7, 2016
1 parent 8dde068 commit 8aff51c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1489,7 +1489,7 @@ static int kiblnd_create_fmr_pool(struct kib_fmr_poolset *fps,
static void kiblnd_fail_fmr_poolset(struct kib_fmr_poolset *fps,
struct list_head *zombies)
{
if (!fps->fps_net) /* intialized? */
if (!fps->fps_net) /* initialized? */
return;

spin_lock(&fps->fps_lock);
Expand Down Expand Up @@ -1812,7 +1812,7 @@ static void kiblnd_destroy_pool_list(struct list_head *head)

static void kiblnd_fail_poolset(struct kib_poolset *ps, struct list_head *zombies)
{
if (!ps->ps_net) /* intialized? */
if (!ps->ps_net) /* initialized? */
return;

spin_lock(&ps->ps_lock);
Expand Down

0 comments on commit 8aff51c

Please sign in to comment.