The patch titled ia64: check-segrel.lds vs --build-id has been removed from the -mm tree. Its filename was ia64-check-segrellds-vs-build-id.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 i386-and-x86_64-randomize-brk.patch i386-and-x86_64-randomize-brk-fix.patch i386-and-x86_64-randomize-brk-fix-2.patch pie-executable-randomization.patch pie-executable-randomization-checkpatch-fixes.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