The patch titled Subject: tracing: fix build error in mm/memory-failure.c has been removed from the -mm tree. Its filename was tracing-add-trace-event-for-memory-failure-fix.patch This patch was dropped because it was folded into tracing-add-trace-event-for-memory-failure.patch ------------------------------------------------------ From: Xie XiuQi <xiexiuqi@xxxxxxxxxx> Subject: tracing: fix build error in mm/memory-failure.c next-20150515 fails to build on i386 with the following error: mm/built-in.o: In function `action_result': memory-failure.c:(.text+0x344a5): undefined reference to `__tracepoint_memory_failure_event' memory-failure.c:(.text+0x344d5): undefined reference to `__tracepoint_memory_failure_event' memory-failure.c:(.text+0x3450c): undefined reference to `__tracepoint_memory_failure_event' trace_memory_failure_event depends on CONFIG_RAS, so add 'select RAS' in mm/Kconfig to avoid this error. Signed-off-by: Xie XiuQi <xiexiuqi@xxxxxxxxxx> Reported-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Reported-by: Jim Davis <jim.epost@xxxxxxxxx> Acked-by: Naoya Horiguchi <n-horiguchi@xxxxxxxxxxxxx> Cc: Steven Rostedt <rostedt@xxxxxxxxxxx> Cc: Chen Gong <gong.chen@xxxxxxxxxxxxxxx> Cc: Tony Luck <tony.luck@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/Kconfig | 1 + 1 file changed, 1 insertion(+) diff -puN mm/Kconfig~tracing-add-trace-event-for-memory-failure-fix mm/Kconfig --- a/mm/Kconfig~tracing-add-trace-event-for-memory-failure-fix +++ a/mm/Kconfig @@ -368,6 +368,7 @@ config MEMORY_FAILURE depends on ARCH_SUPPORTS_MEMORY_FAILURE bool "Enable recovery from hardware memory errors" select MEMORY_ISOLATION + select RAS help Enables code to recover from some memory failures on systems with MCA recovery. This allows a system to continue running _ Patches currently in -mm which might be from xiexiuqi@xxxxxxxxxx are origin.patch memory-failure-export-page_type-and-action-result.patch memory-failure-change-type-of-action_results-param-3-to-enum.patch tracing-add-trace-event-for-memory-failure.patch mm-memblock-add-extra-flags-to-memblock-to-allow-selection-of-memory-based-on-attribute.patch mm-memblock-allocate-boot-time-data-structures-from-mirrored-memory.patch x86-mirror-x86-enabling-find-mirrored-memory-ranges.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