From: James S. <jsi...@us...> - 2001-09-06 17:13:43
|
Update of /cvsroot/linux-mips/linux/arch/mips64/sgi-ip22 In directory usw-pr-cvs1:/tmp/cvs-serv4994/arch/mips64/sgi-ip22 Modified Files: ip22-berr.c Log Message: Update exception handling in modules. Index: ip22-berr.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips64/sgi-ip22/ip22-berr.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ip22-berr.c 2001/09/04 16:03:24 1.3 --- ip22-berr.c 2001/09/06 17:13:41 1.4 *************** *** 64,71 **** spin_lock_irqsave(&modlist_lock, flags); for (mp = module_list; mp != NULL; mp = mp->next) { ! if (!mod_member_present(mp, archdata_start) || ! !mp->archdata_start) continue; ! ap = (struct archdata *)(mod->archdata_start); if (ap->dbe_table_start == NULL || --- 64,72 ---- spin_lock_irqsave(&modlist_lock, flags); for (mp = module_list; mp != NULL; mp = mp->next) { ! if (!mod_member_present(mp, archdata_end) || ! !mod_archdata_member_present(mp, struct archdata, ! dbe_table_end)) continue; ! ap = (struct archdata *)(mp->archdata_start); if (ap->dbe_table_start == NULL || |