diff --git a/arch/arm64/kernel/vmlinux.lds.S b/arch/arm64/kernel/vmlinux.lds.S index d58347376217..80d599fd9c20 100755 --- a/arch/arm64/kernel/vmlinux.lds.S +++ b/arch/arm64/kernel/vmlinux.lds.S @@ -68,12 +68,6 @@ jiffies = jiffies_64; #define TRAMP_TEXT #endif -#define RTIC_BSS \ - . = ALIGN(PAGE_SIZE); \ - VMLINUX_SYMBOL(__bss_rtic_start) = .; \ - KEEP(*(.bss.rtic)) \ - . = ALIGN(PAGE_SIZE); \ - VMLINUX_SYMBOL(__bss_rtic_end) = .; /* * The size of the PE/COFF section that covers the kernel image, which * runs from stext to _edata, must be a round multiple of the PE/COFF @@ -255,10 +249,6 @@ SECTIONS STABS_DEBUG HEAD_SYMBOLS - - .bss : { /* bss segment */ - RTIC_BSS - } } /* diff --git a/include/linux/init.h b/include/linux/init.h index 274be611dfed..b931ceb76025 100755 --- a/include/linux/init.h +++ b/include/linux/init.h @@ -318,8 +318,6 @@ void __init parse_early_options(char *cmdline); /* Data marked not to be saved by software suspend */ #define __nosavedata __section(.data..nosave) -#define __rticdata __attribute__((section(".bss.rtic"))) - #ifdef MODULE #define __exit_p(x) x #else diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 1e1047c8a417..eecc76da5cdd 100755 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -203,7 +203,7 @@ int selinux_enforcing; // CONFIG_RKP_KDP static int selinux_enforcing_boot __kdp_ro; #else -static int selinux_enforcing_boot __rticdata; +static int selinux_enforcing_boot; #endif // ] SEC_SELINUX_PORTING_COMMON