* Upstream calls bpf_verifier_vlog() directly and calling bpf_verifier_log_write() here can sometimes break format args and cause kernel panics Change-Id: I5f7dde9e83b8ef5a2bd1d2739bc08dd2ce69c41d Signed-off-by: Ruchit <risen@pixelexperience.org>
23 lines
330 B
Plaintext
23 lines
330 B
Plaintext
|
|
SECTIONS {
|
|
/DISCARD/ : {
|
|
*(.eh_frame)
|
|
}
|
|
.bss : {
|
|
*(.bss .bss.[0-9a-zA-Z_]*)
|
|
*(.bss..L*)
|
|
}
|
|
.data : {
|
|
*(.data .data.[0-9a-zA-Z_]*)
|
|
*(.data..L*)
|
|
}
|
|
.rodata : {
|
|
*(.rodata .rodata.[0-9a-zA-Z_]*)
|
|
*(.rodata..L*)
|
|
}
|
|
.text : ALIGN((1 << 12)) {
|
|
*(.text.__cfi_check)
|
|
*(.text .text.[0-9a-zA-Z_]* .text..L.cfi*)
|
|
}
|
|
}
|