]> Git Repo - linux.git/commitdiff
slub: remove no-longer used 'unlock_out' label
authorLinus Torvalds <[email protected]>
Thu, 26 May 2011 01:06:54 +0000 (18:06 -0700)
committerLinus Torvalds <[email protected]>
Thu, 26 May 2011 01:06:54 +0000 (18:06 -0700)
Commit a71ae47a2cbf ("slub: Fix double bit unlock in debug mode")
removed the only goto to this label, resulting in

  mm/slub.c: In function '__slab_alloc':
  mm/slub.c:1834: warning: label 'unlock_out' defined but not used

fixed trivially by the removal of the label itself too.

Reported-by: Stephen Rothwell <[email protected]>
Cc: Christoph Lameter <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/slub.c

index 4aad32d2e60d22b659efa63f8728e67d1ce7f1e1..7be0223531b090dbd9f716104714bc4d9ca9c7b5 100644 (file)
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -1831,7 +1831,6 @@ load_freelist:
        page->inuse = page->objects;
        page->freelist = NULL;
 
-unlock_out:
        slab_unlock(page);
        c->tid = next_tid(c->tid);
        local_irq_restore(flags);
This page took 0.062664 seconds and 4 git commands to generate.