The patch titled lockdep: use new arch_is_kernel_data() has been added to the -mm tree. Its filename is lockdep-use-new-arch_is_kernel_data.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: lockdep: use new arch_is_kernel_data() From: Mike Frysinger <vapier@xxxxxxxxxx> This allows lockdep to locate symbols that are in arch-specific data sections (such as data in Blackfin on-chip SRAM regions). Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Robin Getz <rgetz@xxxxxxxxxxxxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/lockdep.c | 3 +++ 1 file changed, 3 insertions(+) diff -puN kernel/lockdep.c~lockdep-use-new-arch_is_kernel_data kernel/lockdep.c --- a/kernel/lockdep.c~lockdep-use-new-arch_is_kernel_data +++ a/kernel/lockdep.c @@ -636,6 +636,9 @@ static int static_obj(void *obj) if ((addr >= start) && (addr < end)) return 1; + if (arch_is_kernel_data(addr)) + return 1; + #ifdef CONFIG_SMP /* * percpu var? _ Patches currently in -mm which might be from vapier@xxxxxxxxxx are origin.patch rmap-fixup-page_referenced-for-nommu-systems.patch linux-next.patch pcmcia-yenta-add-missing-__devexit-marking.patch serial-bfin_5xx-fix-building-as-module-when-early-printk-is-enabled.patch asm-sections-add-text-data-checking-functions-for-arches-to-override.patch kallsyms-use-new-arch_is_kernel_text.patch lockdep-use-new-arch_is_kernel_data.patch blackfin-override-text-data-checking-functions.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