[MIPS] Discard .exit.text at runtime.
At times gcc will place bits of __exit functions into .rodata. If compiled into the kernle itself we used to discard .exit.text - but not the bits left in .rodata. While harmless this did at times result in a large number of warnings. So until gcc fixes this, discard .exit.text at runtime. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
ec28f30657
commit
bb7d83f744
1 changed files with 3 additions and 1 deletions
|
@ -106,6 +106,9 @@ SECTIONS
|
||||||
.con_initcall.init : { *(.con_initcall.init) }
|
.con_initcall.init : { *(.con_initcall.init) }
|
||||||
__con_initcall_end = .;
|
__con_initcall_end = .;
|
||||||
SECURITY_INIT
|
SECURITY_INIT
|
||||||
|
/* .exit.text is discarded at runtime, not link time, to deal with
|
||||||
|
references from .rodata */
|
||||||
|
.exit.text : { *(.exit.text) }
|
||||||
. = ALIGN(_PAGE_SIZE);
|
. = ALIGN(_PAGE_SIZE);
|
||||||
__initramfs_start = .;
|
__initramfs_start = .;
|
||||||
.init.ramfs : { *(.init.ramfs) }
|
.init.ramfs : { *(.init.ramfs) }
|
||||||
|
@ -133,7 +136,6 @@ SECTIONS
|
||||||
|
|
||||||
/* Sections to be discarded */
|
/* Sections to be discarded */
|
||||||
/DISCARD/ : {
|
/DISCARD/ : {
|
||||||
*(.exit.text)
|
|
||||||
*(.exit.data)
|
*(.exit.data)
|
||||||
*(.exitcall.exit)
|
*(.exitcall.exit)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue