From: Hannes Frederic Sowa Date: Wed, 23 Oct 2013 06:44:50 +0000 (+0200) Subject: net: always inline net_secret_init X-Git-Tag: v3.13-rc1~105^2~137 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34d92d5315b64a3e5292b7e9511c1bb617227fb6;p=pandora-kernel.git net: always inline net_secret_init Currently net_secret_init does not get inlined, so we always have a call to net_secret_init even in the fast path. Let's specify net_secret_init as __always_inline so we have the nop in the fast-path without the call to net_secret_init and the unlikely path at the epilogue of the function. jump_labels handle the inlining correctly. Signed-off-by: Hannes Frederic Sowa Signed-off-by: David S. Miller --- Reading git-diff-tree failed