From: Linus Torvalds Date: Sun, 5 Feb 2006 19:26:38 +0000 (-0800) Subject: mm/slab.c (non-NUMA): Fix compile warning and clean up code X-Git-Tag: v2.6.16-rc3~144 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a21ef6fe902ac0ad53b45af6851ae5ec3a64299;p=pandora-kernel.git mm/slab.c (non-NUMA): Fix compile warning and clean up code The non-NUMA case would do an unmatched "free_alien_cache()" on an alien pointer that had never been allocated. It might not matter from a code generation standpoint (since in the non-NUMA case, the code doesn't actually _do_ anything), but it not only results in a compiler warning, it's really really ugly too. Fix the compiler warning by just having a matching dummy allocation. That also avoids an unnecessary #ifdef in the code. Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed