From: Roland Dreier <roland@topspin.com>
To: Linus Torvalds <torvalds@osdl.org>
Cc: Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: Linux 2.6.0-test8
Date: 17 Oct 2003 16:43:29 -0700 [thread overview]
Message-ID: <52ptgvo2fy.fsf@topspin.com> (raw)
In-Reply-To: <Pine.LNX.4.44.0310171530001.1988-100000@home.osdl.org>
Here's a fix for compiling with gcc 2.95 (a variable declaration got
mixed in with code):
--- linux-2.6.0-test8/arch/i386/kernel/microcode.c.orig Fri Oct 17 16:36:47 2003
+++ linux-2.6.0-test8/arch/i386/kernel/microcode.c Fri Oct 17 16:37:03 2003
@@ -324,8 +324,9 @@
/* check extended table checksum */
if (ext_table_size) {
int ext_table_sum = 0;
+ int * ext_tablep;
i = ext_table_size / DWSIZE;
- int * ext_tablep = (((void *) newmc) + MC_HEADER_SIZE + data_size);
+ ext_tablep = (((void *) newmc) + MC_HEADER_SIZE + data_size);
while (i--) ext_table_sum += ext_tablep[i];
if (ext_table_sum) {
printk(KERN_WARNING "microcode: aborting, bad extended signature table checksum\n");
next prev parent reply other threads:[~2003-10-17 23:43 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-10-17 22:31 Linux 2.6.0-test8 Linus Torvalds
2003-10-17 23:43 ` Roland Dreier [this message]
2003-10-18 0:49 ` Linux 2.6.0-test8 (compile stats) John Cherry
2003-10-18 16:49 ` Linux 2.6.0-test8 Daniele Venzano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=52ptgvo2fy.fsf@topspin.com \
--to=roland@topspin.com \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.