From: Cesar Eduardo Barros Date: Tue, 22 Mar 2011 23:33:38 +0000 (-0700) Subject: mm: remove inline from scan_swap_map() X-Git-Tag: v2.6.39-rc1~289 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24b8ff7c27d9e975540656e377de44a2a181a01f;p=pandora-kernel.git mm: remove inline from scan_swap_map() scan_swap_map() is a large function (224 lines), with several loops and a complex control flow involving several gotos. Given all that, it is a bit silly that it is marked as inline. The compiler agrees with me: on a x86-64 compile, it did not inline the function. Remove the "inline" and let the compiler decide instead. Signed-off-by: Cesar Eduardo Barros Reviewed-by: Pekka Enberg Reviewed-by: KOSAKI Motohiro Reviewed-by: KAMEZAWA Hiroyuki Reviewed-by: Minchan Kim Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed