From: Shuah Khan Date: Fri, 13 Jul 2012 23:12:05 +0000 (-0600) Subject: mm: Fix build warning in kmem_cache_create() X-Git-Tag: v3.6-rc1~50^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73a1180e140d45cb9ef5fbab103d3bbfc4c84606;p=pandora-kernel.git mm: Fix build warning in kmem_cache_create() The label oops is used in CONFIG_DEBUG_VM ifdef block and is defined outside ifdef CONFIG_DEBUG_VM block. This results in the following build warning when built with CONFIG_DEBUG_VM disabled. Fix to move label oops definition to inside a CONFIG_DEBUG_VM block. mm/slab_common.c: In function ‘kmem_cache_create’: mm/slab_common.c:101:1: warning: label ‘oops’ defined but not used [-Wunused-label] Signed-off-by: Shuah Khan Signed-off-by: Pekka Enberg --- Reading git-diff-tree failed