From: SUGIOKA T. <su...@it...> - 2003-03-23 15:04:32
|
Hi, I'll commit this fix soon. * arch/sh/mm/copy_page.S (__copy_user): Add missing exception handling point. Index: arch/sh/mm/copy_page.S =================================================================== RCS file: /cvsroot/linuxsh/linux/arch/sh/mm/copy_page.S,v retrieving revision 1.1.1.1.2.5 diff -u -r1.1.1.1.2.5 copy_page.S --- arch/sh/mm/copy_page.S 10 Jun 2002 06:22:45 -0000 1.1.1.1.2.5 +++ arch/sh/mm/copy_page.S 23 Mar 2003 14:58:25 -0000 @@ -228,9 +228,9 @@ tst r2,r2 bt .L_cleanup 1: - mov.l @r5+,r0 +EX( mov.l @r5+,r0 ) dt r2 - mov.l r0,@r4 +EX( mov.l r0,@r4 ) bf/s 1b add #4,r4 ---- SUGIOKA Toshinobu |