From 7e7649baa9de9d592a76e150970e3079d7610138 Mon Sep 17 00:00:00 2001 From: kaloz Date: Tue, 1 May 2012 07:00:17 +0000 Subject: [coldfire]: switch to 2.6.38 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31546 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ...mat-field-for-the-Coldfire-exception-fram.patch | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch (limited to 'target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch') diff --git a/target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch b/target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch new file mode 100644 index 000000000..42c6f1b55 --- /dev/null +++ b/target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch @@ -0,0 +1,27 @@ +From 53cfdf92d9b68f5dac006853dd6727d7bf666b17 Mon Sep 17 00:00:00 2001 +From: Alison Wang +Date: Thu, 4 Aug 2011 09:59:44 +0800 +Subject: [PATCH 19/52] Fix the format field for the Coldfire exception frame + +Different with M68K, the correct format field encoding +for ColdFire should be 4, 5, 6 or 7. + +Signed-off-by: Alison Wang +--- + arch/m68k/mm/fault.c | 4 ++++ + 1 files changed, 4 insertions(+), 0 deletions(-) + +--- a/arch/m68k/mm/fault.c ++++ b/arch/m68k/mm/fault.c +@@ -45,7 +45,11 @@ int send_fault_sig(struct pt_regs *regs) + regs->stkadj = frame_extra_sizes[regs->format]; + tregs = (struct pt_regs *)((ulong)regs + regs->stkadj); + tregs->vector = regs->vector; ++#ifdef CONFIG_COLDFIRE ++ tregs->format = regs->stkadj + 4; ++#else + tregs->format = 0; ++#endif + tregs->pc = fixup->fixup; + tregs->sr = regs->sr; + return -1; -- cgit v1.2.3