From: Dave Jones <davej@codemonkey.org.uk>
To: Daniel Egger <degger@fhm.edu>
Cc: Linux Kernel List <linux-kernel@vger.kernel.org>
Subject: Re: [Patch] Enable SSE for AMD Athlon (Thoroughbred) in 2.4.20
Date: Thu, 20 Feb 2003 18:45:25 +0000 [thread overview]
Message-ID: <20030220184525.GA23768@codemonkey.org.uk> (raw)
In-Reply-To: <1045266292.12105.41.camel@sonja>
On Sat, Feb 15, 2003 at 12:44:53AM +0100, Daniel Egger wrote:
> Hija,
>
> please include the obvious oneliner attached in 2.4.21 to help
> the poor folks having recent Athlons. :)
>
> A similar change for the just released Barton would also be nice but
> I do not have the model number handy.
It's model 10. Somehow they skipped model 9.
> --- arch/i386/kernel/setup.c.orig 2003-02-03 13:26:38.000000000 +0100
> +++ arch/i386/kernel/setup.c 2003-02-14 14:14:12.000000000 +0100
> @@ -1421,7 +1421,7 @@
> * If the BIOS didn't enable it already, enable it
> * here.
> */
> - if (c->x86_model == 6 || c->x86_model == 7) {
> + if (c->x86_model == 6 || c->x86_model == 7 || c->x86_model == 8) {
> if (!test_bit(X86_FEATURE_XMM,
> &c->x86_capability)) {
> printk(KERN_INFO
if (c->x86_model >= 6 && c->x86_model <= 10) {
should do the right thing on all current models with SSE afaics..
Dave
--
| Dave Jones. http://www.codemonkey.org.uk
| SuSE Labs
next prev parent reply other threads:[~2003-02-20 18:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-02-14 23:44 [Patch] Enable SSE for AMD Athlon (Thoroughbred) in 2.4.20 Daniel Egger
2003-02-20 18:45 ` Dave Jones [this message]
2003-02-20 20:17 ` Daniel Egger
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=20030220184525.GA23768@codemonkey.org.uk \
--to=davej@codemonkey.org.uk \
--cc=degger@fhm.edu \
--cc=linux-kernel@vger.kernel.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.