From: Joonsoo Kim Date: Thu, 9 Oct 2014 22:26:04 +0000 (-0700) Subject: mm/slab: move cache_flusharray() out of unlikely.text section X-Git-Tag: omap-for-v3.19/prcm-cleanup~134^2~119 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d88019408d6fbff1a38a58e694d56b7fd465408;p=pandora-kernel.git mm/slab: move cache_flusharray() out of unlikely.text section Now, due to likely keyword, compiled code of cache_flusharray() is on unlikely.text section. Although it is uncommon case compared to free to cpu cache case, it is common case than free_block(). But, free_block() is on normal text section. This patch fix this odd situation to remove likely keyword. Signed-off-by: Joonsoo Kim Cc: Christoph Lameter Cc: Pekka Enberg Cc: David Rientjes Cc: Zhang Yanfei Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed