• Jiri Slaby's avatar
    x86/asm: Do not annotate functions with GLOBAL · 37818afd
    Jiri Slaby authored
    GLOBAL is an x86's custom macro and is going to die very soon. It was
    meant for global symbols, but here, it was used for functions. Instead,
    use the new macros SYM_FUNC_START* and SYM_CODE_START* (depending on the
    type of the function) which are dedicated to global functions. And since
    they both require a closing by SYM_*_END, do that here too.
    
    startup_64, which does not use GLOBAL but uses .globl explicitly, is
    converted too.
    
    "No alignments" are preserved.
    Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
    Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
    Cc: Allison Randal <allison@lohutok.net>
    Cc: Andy Lutomirski <luto@kernel.org>
    Cc: Cao jin <caoj.fnst@cn.fujitsu.com>
    Cc: Enrico Weigelt <info@metux.net>
    Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Cc: "H. Peter Anvin" <hpa@zytor.com>
    Cc: Ingo Molnar <mingo@redhat.com>
    Cc: Juergen Gross <jgross@suse.com>
    Cc: Kate Stewart <kstewart@linuxfoundation.org>
    Cc: linux-arch@vger.kernel.org
    Cc: Maran Wilson <maran.wilson@oracle.com>
    Cc: Peter Zijlstra <peterz@infradead.org>
    Cc: Thomas Gleixner <tglx@linutronix.de>
    Cc: x86-ml <x86@kernel.org>
    Link: https://lkml.kernel.org/r/20191011115108.12392-17-jslaby@suse.cz
    37818afd
head_64.S 13.5 KB