The patch titled rename-thread_info-to-stack-fix 2 has been added to the -mm tree. Its filename is wrap-access-to-thread_info-fix.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: rename-thread_info-to-stack-fix 2 From: Roman Zippel <zippel@xxxxxxxxxxxxxx> The two changes to asm-offsets.c belong to second rename patch and the rest is for the first wrapper patch. Signed-off-by: Roman Zippel <zippel@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/blackfin/kernel/asm-offsets.c | 2 +- arch/m68knommu/kernel/asm-offsets.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/blackfin/kernel/asm-offsets.c~wrap-access-to-thread_info-fix arch/blackfin/kernel/asm-offsets.c --- a/arch/blackfin/kernel/asm-offsets.c~wrap-access-to-thread_info-fix +++ a/arch/blackfin/kernel/asm-offsets.c @@ -46,7 +46,7 @@ int main(void) DEFINE(TASK_PTRACE, offsetof(struct task_struct, ptrace)); DEFINE(TASK_BLOCKED, offsetof(struct task_struct, blocked)); DEFINE(TASK_THREAD, offsetof(struct task_struct, thread)); - DEFINE(TASK_THREAD_INFO, offsetof(struct task_struct, thread_info)); + DEFINE(TASK_THREAD_INFO, offsetof(struct task_struct, stack)); DEFINE(TASK_MM, offsetof(struct task_struct, mm)); DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm)); DEFINE(TASK_SIGPENDING, offsetof(struct task_struct, pending)); diff -puN arch/m68knommu/kernel/asm-offsets.c~wrap-access-to-thread_info-fix arch/m68knommu/kernel/asm-offsets.c --- a/arch/m68knommu/kernel/asm-offsets.c~wrap-access-to-thread_info-fix +++ a/arch/m68knommu/kernel/asm-offsets.c @@ -31,7 +31,7 @@ int main(void) DEFINE(TASK_PTRACE, offsetof(struct task_struct, ptrace)); DEFINE(TASK_BLOCKED, offsetof(struct task_struct, blocked)); DEFINE(TASK_THREAD, offsetof(struct task_struct, thread)); - DEFINE(TASK_THREAD_INFO, offsetof(struct task_struct, thread_info)); + DEFINE(TASK_THREAD_INFO, offsetof(struct task_struct, stack)); DEFINE(TASK_MM, offsetof(struct task_struct, mm)); DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm)); _ Patches currently in -mm which might be from zippel@xxxxxxxxxxxxxx are origin.patch is_power_of_2-in-fs-hfs.patch optimize-timespec_trunc.patch allow-arch-to-initialize-arch-field-of-the-module-structure.patch wrap-access-to-thread_info.patch wrap-access-to-thread_info-fix.patch rename-thread_info-to-stack.patch rename-thread_info-to-stack-fix.patch rename-thread_info-to-stack-fix-2.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