The patch titled ia64: check-segrel.lds vs --build-id has been added to the -mm tree. Its filename is ia64-check-segrellds-vs-build-id.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ia64: check-segrel.lds vs --build-id From: Roland McGrath <roland@xxxxxxxxxx> Some versions of ld with --build-id support will crash when using the flag with a linker script that discards notes. This bites ia64's check-segrel.lds. The bug is easy to avoid. Signed-off-by: Roland McGrath <roland@xxxxxxxxxx> Cc: Doug Chapman <dchapman@xxxxxxxxxx> Cc: "Luck, Tony" <tony.luck@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/ia64/scripts/check-segrel.lds | 1 + 1 file changed, 1 insertion(+) diff -puN arch/ia64/scripts/check-segrel.lds~ia64-check-segrellds-vs-build-id arch/ia64/scripts/check-segrel.lds --- a/arch/ia64/scripts/check-segrel.lds~ia64-check-segrellds-vs-build-id +++ a/arch/ia64/scripts/check-segrel.lds @@ -1,6 +1,7 @@ SECTIONS { . = SIZEOF_HEADERS; .rodata : { *(.rodata) } :ro + .note : { *(.note*) } . = 0xa0000; .data : { *(.data) } :dat /DISCARD/ : { *(*) } _ Patches currently in -mm which might be from roland@xxxxxxxxxx are origin.patch ia64-check-segrellds-vs-build-id.patch x86_64-use-linux-elfcore-compath.patch fix-tsk-exit_state-usage-resend.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html