The patch titled Subject: scripts/gdb/vmlinux-gdb.py: fix the sys path for gdb scripts has been removed from the -mm tree. Its filename was scripts-fix-the-sys-path-for-gdb-scripts.patch This patch was dropped because it was nacked ------------------------------------------------------ From: yalin wang <yalin.wang2010@xxxxxxxxx> Subject: scripts/gdb/vmlinux-gdb.py: fix the sys path for gdb scripts The sys.path should be scripts/gdb, so that we can import linux lib correctly. Signed-off-by: yalin wang <yalin.wang2010@xxxxxxxxx> Cc: Jan Kiszka <jan.kiszka@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/gdb/vmlinux-gdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/gdb/vmlinux-gdb.py~scripts-fix-the-sys-path-for-gdb-scripts scripts/gdb/vmlinux-gdb.py --- a/scripts/gdb/vmlinux-gdb.py~scripts-fix-the-sys-path-for-gdb-scripts +++ a/scripts/gdb/vmlinux-gdb.py @@ -13,7 +13,7 @@ import os -sys.path.insert(0, os.path.dirname(__file__) + "/scripts/gdb") +sys.path.insert(0, os.path.dirname(__file__)) try: gdb.parse_and_eval("0") _ Patches currently in -mm which might be from yalin.wang2010@xxxxxxxxx are mm-change-trace_mm_vmscan_writepage-proto-type.patch mm-change-mm_vmscan_lru_shrink_inactive-proto-types.patch mm-fix-kernel-crash-in-khugepaged-thread.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