Messages in this thread |  | | | Date | Mon, 23 Apr 2001 19:57:12 +0200 | | From | Ingo Oeser <> |
| |
On Mon, Apr 23, 2001 at 04:52:53PM +0100, David Woodhouse wrote: > RCS file: /inst/cvs/linux/include/asm-i386/bugs.h,v > retrieving revision 1.2.2.16 > diff -u -r1.2.2.16 bugs.h > --- include/asm/bugs.h 2001/01/18 13:56:53 1.2.2.16 > +++ include/asm/bugs.h 2001/04/23 15:45:28 > @@ -80,8 +80,10 @@ > * Verify that the FXSAVE/FXRSTOR data will be 16-byte aligned. > */ > if (offsetof(struct task_struct, thread.i387.fxsave) & 15) { > - extern void __buggy_fxsr_alignment(void); > - __buggy_fxsr_alignment(); > + printk(KERN_EMERG "ERROR: FXSAVE data are not 16-byte aligned in task_struct.\n"); > + printk(KERN_EMERG "This is usually caused by a buggy compiler (perhaps pgcc?)\n"); > + printk(KERN_EMERG "Cannot continue.\n"); > + for (;;) ; replace this with panic() please. Even machines, which reboot on panic will reboot over and over again here, which surely someone will notice ;-) > } > if (cpu_has_fxsr) { > printk(KERN_INFO "Enabling fast FPU save and restore... ");
Regards
Ingo Oeser -- 10.+11.03.2001 - 3. Chemnitzer LinuxTag <http://www.tu-chemnitz.de/linux/tag> <<<<<<<<<<<< been there and had much fun >>>>>>>>>>>> - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |