[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[xen stable-4.20] xen/compiler: Fix the position of the visibility pragma



commit 859e2c4f846654e7966a2305fa17811a5d072c76
Author:     Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
AuthorDate: Thu Mar 27 14:57:31 2025 +0100
Commit:     Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Thu Mar 27 14:57:31 2025 +0100

    xen/compiler: Fix the position of the visibility pragma
    
    This needs to be ahead of everything.  Right now, it is after xen/init.h 
being
    included for -DINIT_SECTIONS_ONLY
    
      # 1 "./include/xen/compiler.h" 1
      # 83 "./include/xen/compiler.h"
      # 1 "./include/xen/init.h" 1
      # 62 "./include/xen/init.h"
      typedef int (*initcall_t)(void);
      typedef void (*exitcall_t)(void);
      # 72 "./include/xen/init.h"
      void do_presmp_initcalls(void);
      void do_initcalls(void);
      # 84 "./include/xen/compiler.h" 2
      # 122 "./include/xen/compiler.h"
      #pragma GCC visibility push(hidden)
    
    Fixes: 84c4461b7d3a ("Force out-of-line instances of inline functions into 
.init.text in init-only code")
    Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
    Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>
    master commit: ab7ce0c8ed90f729a186babd87e3cd1fbed8ab98
    master date: 2025-03-21 11:52:39 +0000
---
 xen/include/xen/compiler.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/xen/include/xen/compiler.h b/xen/include/xen/compiler.h
index b118e4ba62..636a85bc41 100644
--- a/xen/include/xen/compiler.h
+++ b/xen/include/xen/compiler.h
@@ -15,6 +15,11 @@
 # endif
 #endif
 
+#ifdef CONFIG_CC_HAS_VISIBILITY_ATTRIBUTE
+/* Results in more efficient PIC code (no indirections through GOT or PLT). */
+#pragma GCC visibility push(hidden)
+#endif
+
 #define barrier()     __asm__ __volatile__("": : :"memory")
 
 #define likely(x)     __builtin_expect(!!(x),1)
@@ -118,11 +123,6 @@
 #define __must_be_array(a) \
   BUILD_BUG_ON_ZERO(__builtin_types_compatible_p(typeof(a), typeof(&(a)[0])))
 
-#ifdef CONFIG_CC_HAS_VISIBILITY_ATTRIBUTE
-/* Results in more efficient PIC code (no indirections through GOT or PLT). */
-#pragma GCC visibility push(hidden)
-#endif
-
 /* Make the optimizer believe the variable can be manipulated arbitrarily. */
 #define OPTIMIZER_HIDE_VAR(var) __asm__ ( "" : "+g" (var) )
 
--
generated by git-patchbot for /home/xen/git/xen.git#stable-4.20



 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.