From: Kenn H. <ke...@us...> - 2001-01-29 00:49:00
|
Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax/mm In directory usw-pr-cvs1:/tmp/cvs-serv26738 Modified Files: page.h Log Message: One-liner: change BUG() to do BUGW rather than HALT Index: page.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/mm/page.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- page.h 2001/01/18 15:52:28 1.3 +++ page.h 2001/01/29 00:48:51 1.4 @@ -14,7 +14,7 @@ #define BUG() do { \ printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \ - __asm__ __volatile__(".word 0x0000"); \ + __asm__ __volatile__("bugw $0"); \ } while (0) #define PAGE_BUG(page) do { \ |