s390: discard .interp section
authorIlya Leoshkevich <iii@linux.ibm.com>
Mon, 23 Jan 2023 21:50:32 +0000 (22:50 +0100)
committerHeiko Carstens <hca@linux.ibm.com>
Wed, 25 Jan 2023 19:51:10 +0000 (20:51 +0100)
When debugging vmlinux with QEMU + GDB, the following GDB error may
occur:

    (gdb) c
    Continuing.
    Warning:
    Cannot insert breakpoint -1.
    Cannot access memory at address 0xffffffffffff95c0

    Command aborted.
    (gdb)

The reason is that, when .interp section is present, GDB tries to
locate the file specified in it in memory and put a number of
breakpoints there (see enable_break() function in gdb/solib-svr4.c).
Sometimes GDB finds a bogus location that matches its heuristics,
fails to set a breakpoint and stops. This makes further debugging
impossible.

The .interp section contains misleading information anyway (vmlinux
does not need ld.so), so fix by discarding it.

Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
arch/s390/kernel/vmlinux.lds.S

index 5c2224f..acdf1e8 100644 (file)
@@ -231,5 +231,6 @@ SECTIONS
        DISCARDS
        /DISCARD/ : {
                *(.eh_frame)
+               *(.interp)
        }
 }