From: Andrew Cooper Date: Tue, 3 Oct 2017 18:07:50 +0000 (+0100) Subject: xen/tmem: Drop unnecessary noinline attribute X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~1215 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ca72c0e16210921c3e8191615af6a553392019e6;p=xen.git xen/tmem: Drop unnecessary noinline attribute tmem_mempool_page_get() is only referenced by address, so isn't eligable for inlining in the first place. Signed-off-by: Andrew Cooper Reviewed-by: Konrad Rzeszutek Wilk --- diff --git a/xen/common/tmem.c b/xen/common/tmem.c index c955cf7167..324f42a6f9 100644 --- a/xen/common/tmem.c +++ b/xen/common/tmem.c @@ -200,7 +200,7 @@ static void tmem_free_page(struct tmem_pool *pool, struct page_info *pfp) atomic_dec_and_assert(global_page_count); } -static noinline void *tmem_mempool_page_get(unsigned long size) +static void *tmem_mempool_page_get(unsigned long size) { struct page_info *pi;