diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-25 18:06:54 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-25 18:06:54 -0700 |
commit | 49a78d085fa6b44d6ed791923c7172a6433589c2 (patch) | |
tree | 0fdf94bc4baf3e51f4b52c3718e6fa4f5dcb5032 | |
parent | 3f5785ec31adcb7cafa9135087297a38d9698cf8 (diff) |
slub: remove no-longer used 'unlock_out' label
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 <sfr@canb.auug.org.au>
Cc: Christoph Lameter <cl@linux.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | mm/slub.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mm/slub.c b/mm/slub.c index 4aad32d2e60d..7be0223531b0 100644 --- 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); |