[xtensa-cvscommit] linux/arch/xtensa/kernel setup.c,1.12,1.13
Brought to you by:
zankel
|
From: <joe...@us...> - 2003-06-12 23:43:56
|
Update of /cvsroot/xtensa/linux/arch/xtensa/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv10730/arch/xtensa/kernel Modified Files: setup.c Log Message: We need to sort the exception table, else a task error crashes the kernel. Index: setup.c =================================================================== RCS file: /cvsroot/xtensa/linux/arch/xtensa/kernel/setup.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** setup.c 28 Apr 2003 23:21:09 -0000 1.12 --- setup.c 12 Jun 2003 23:43:53 -0000 1.13 *************** *** 41,44 **** --- 41,45 ---- #include <asm/machvec.h> #include <asm/page.h> + #include <asm/uaccess.h> #include <asm/platform/hardware.h> *************** *** 339,342 **** --- 340,345 ---- paging_init(); + + sort_exception_table(); #ifdef CONFIG_VT |