From: Jesper S. <js...@re...> - 2000-08-31 10:42:05
|
--- ../../../RH-STAMPED/kernel/ChangeLog Wed Aug 30 11:18:29 2000 +++ ChangeLog Thu Aug 31 12:40:59 2000 @@ -1,3 +1,8 @@ +2000-08-31 Jesper Skov <js...@re...> + + * arch/sh/mm/fault.c (__do_page_fault): Fixed bug that caused + infinite cycle of faults when writing to a page for the first time. + 2000-08-30 NIIBE Yutaka <gn...@m1...> * arch/sh/kernel/head.S: Move the alignment expression before .text --- ../../../RH-STAMPED/kernel/arch/sh/mm/fault.c Mon Aug 21 10:56:34 2000 +++ arch/sh/mm/fault.c Thu Aug 31 12:36:38 2000 @@ -261,7 +261,7 @@ return 1; if (writeaccess) - pte_mkdirty(entry); + entry = pte_mkdirty(entry); entry = pte_mkyoung(entry); #if defined(__SH4__) /* |