]> git.baikalelectronics.ru Git - kernel.git/commit
mm/slab.c (non-NUMA): Fix compile warning and clean up code
authorLinus Torvalds <torvalds@g5.osdl.org>
Sun, 5 Feb 2006 19:26:38 +0000 (11:26 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Sun, 5 Feb 2006 19:26:38 +0000 (11:26 -0800)
commit5bfe635ba354b0029ea91250d3992e27dfb201d1
tree1e8c690f6fb644c8ce8873c7907ef0ed934446df
parent16414ae3556fcbd1aab39cf877c36b727b118083
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 <torvalds@osdl.org>
mm/slab.c