From: Doug Thompson <norsk5@yahoo.com>
To: Borislav Petkov <borislav.petkov@amd.com>,
Randy Dunlap <randy.dunlap@oracle.com>
Cc: Borislav Petkov <petkovbb@googlemail.com>,
LKML <linux-kernel@vger.kernel.org>,
Doug Thompson <dougthompson@xmission.com>
Subject: Re: 2.6.32-rc8: amd64_edac slub error
Date: Wed, 2 Dec 2009 14:12:06 -0800 (PST) [thread overview]
Message-ID: <353238.3571.qm@web50101.mail.re2.yahoo.com> (raw)
In-Reply-To: <20091202101108.11b84c5c.randy.dunlap@oracle.com>
--- On Wed, 12/2/09, Randy Dunlap <randy.dunlap@oracle.com> wrote:
> From: Randy Dunlap <randy.dunlap@oracle.com>
> Subject: Re: 2.6.32-rc8: amd64_edac slub error
> To: "Borislav Petkov" <borislav.petkov@amd.com>
> Cc: "Borislav Petkov" <petkovbb@googlemail.com>, "LKML" <linux-kernel@vger.kernel.org>, "Doug Thompson" <dougthompson@xmission.com>
> Date: Wednesday, December 2, 2009, 11:11 AM
> On Wed, 2 Dec 2009 11:58:38 +0100
> Borislav Petkov wrote:
>
> > On Tue, Dec 01, 2009 at 09:19:31AM -0800, Randy Dunlap
> wrote:
> > > Here's the new log file (attached).
> >
> > Thanks for testing. Meanwhile, I noticed that the
> other places where
> > rdmsr_on_cpus() gets called with non-contigious
> cpumasks need fixing
> > too. Here's a version that takes care of that, I'd be
> nice if you could
> > give it a run too (patch against today's upstream).
> You could also
> > enforce the module loading by setting
> 'ecc_enable_override=1' to verify
> > the other rdmsr_on_cpus calls.
> >
> > Thanks.
>
> This patch also works for me. Thanks.
>
> Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Acked-by: Doug Thompson <dougthompson@xmission.com>
>
>
> boot log attached.
>
> > ---
> > diff --git a/drivers/edac/amd64_edac.c
> b/drivers/edac/amd64_edac.c
> > index a38831c..da2428b 100644
> > --- a/drivers/edac/amd64_edac.c
> > +++ b/drivers/edac/amd64_edac.c
> > @@ -2618,6 +2618,9 @@ static int
> amd64_init_csrows(struct mem_ctl_info *mci)
> > return empty;
> > }
> >
> > +static struct msr *alloc_msrs(const cpumask_t
> *mask);
> > +static void free_msrs(struct msr *msrs);
> > +
> > /*
> > * Only if 'ecc_enable_override' is
> set AND BIOS had ECC disabled, do "we"
> > * enable it.
> > @@ -2627,14 +2630,16 @@ static void
> amd64_enable_ecc_error_reporting(struct mem_ctl_info *mci)
> > struct amd64_pvt *pvt =
> mci->pvt_info;
> > const cpumask_t *cpumask =
> cpumask_of_node(pvt->mc_node_id);
> > int cpu, idx = 0, err = 0;
> > - struct msr
> msrs[cpumask_weight(cpumask)];
> > + struct msr *msrs;
> > u32 value;
> > u32 mask = K8_NBCTL_CECCEn |
> K8_NBCTL_UECCEn;
> >
> > if (!ecc_enable_override)
> > return;
> >
> > - memset(msrs, 0, sizeof(msrs));
> > + msrs = alloc_msrs(cpumask);
> > + if (!msrs)
> > + return;
> >
> > amd64_printk(KERN_WARNING,
> >
> "'ecc_enable_override' parameter is active, "
> > @@ -2697,20 +2702,24 @@ static void
> amd64_enable_ecc_error_reporting(struct mem_ctl_info *mci)
> > (value
> & K8_NBCFG_ECC_ENABLE) ? "Enabled" : "Disabled");
> >
> > pvt->ctl_error_info.nbcfg
> = value;
> > +
> > + free_msrs(msrs);
> > }
> >
> > static void
> amd64_restore_ecc_error_reporting(struct amd64_pvt *pvt)
> > {
> > const cpumask_t *cpumask =
> cpumask_of_node(pvt->mc_node_id);
> > int cpu, idx = 0, err = 0;
> > - struct msr
> msrs[cpumask_weight(cpumask)];
> > + struct msr *msrs;
> > u32 value;
> > u32 mask = K8_NBCTL_CECCEn |
> K8_NBCTL_UECCEn;
> >
> > if
> (!pvt->nbctl_mcgctl_saved)
> > return;
> >
> > - memset(msrs, 0, sizeof(msrs));
> > + msrs = alloc_msrs(cpumask);
> > + if (!msrs)
> > + return;
> >
> > err =
> pci_read_config_dword(pvt->misc_f3_ctl, K8_NBCTL,
> &value);
> > if (err)
> > @@ -2731,6 +2740,8 @@ static void
> amd64_restore_ecc_error_reporting(struct amd64_pvt *pvt)
> > }
> >
> > wrmsr_on_cpus(cpumask,
> K8_MSR_MCGCTL, msrs);
> > +
> > + free_msrs(msrs);
> > }
> >
> > /* get all cores on this DCT */
> > @@ -2743,6 +2754,40 @@ static void
> get_cpus_on_this_dct_cpumask(cpumask_t *mask, int nid)
> >
> cpumask_set_cpu(cpu, mask);
> > }
> >
> > +/*
> > + * Allocate enough msr structs for the supplied
> cpumask. Also, take care of
> > + * non-contigious bitmasks.
> > + */
> > +static struct msr *alloc_msrs(const cpumask_t *mask)
> > +{
> > + struct msr *msrs;
> > + int i, first_cpu, last_cpu = 0;
> > +
> > + if (cpumask_empty(mask)) {
> > +
> amd64_printk(KERN_WARNING, "%s: Empty cpumask!\n",
> __func__);
> > + return NULL;
> > + }
> > +
> > + first_cpu = cpumask_first(mask);
> > + for (i = first_cpu; i <
> nr_cpu_ids; i++)
> > + if
> (cpumask_test_cpu(i, mask))
> > +
> last_cpu = i;
> > +
> > + msrs = kzalloc(sizeof(*msrs) *
> (last_cpu - first_cpu + 1), GFP_KERNEL);
> > + if (!msrs) {
> > +
> amd64_printk(KERN_WARNING, "%s: error allocating msrs\n",
> > +
> __func__);
> > +
> return NULL;
> > + }
> > +
> > + return msrs;
> > +}
> > +
> > +static void free_msrs(struct msr *msrs)
> > +{
> > + kfree(msrs);
> > +}
> > +
> > /* check MCG_CTL on all the cpus on this node
> */
> > static bool
> amd64_nb_mce_bank_enabled_on_node(int nid)
> > {
> > @@ -2755,12 +2800,9 @@ static bool
> amd64_nb_mce_bank_enabled_on_node(int nid)
> >
> >
> get_cpus_on_this_dct_cpumask(&mask, nid);
> >
> > - msrs = kzalloc(sizeof(struct msr)
> * cpumask_weight(&mask), GFP_KERNEL);
> > - if (!msrs) {
> > -
> amd64_printk(KERN_WARNING, "%s: error allocating msrs\n",
> > -
> __func__);
> > -
> return false;
> > - }
> > + msrs = alloc_msrs(&mask);
> > + if (!msrs)
> > + goto out_err;
> >
> > rdmsr_on_cpus(&mask,
> MSR_IA32_MCG_CTL, msrs);
> >
> > @@ -2779,7 +2821,9 @@ static bool
> amd64_nb_mce_bank_enabled_on_node(int nid)
> > ret = true;
> >
> > out:
> > - kfree(msrs);
> > + free_msrs(msrs);
> > +
> > +out_err:
> > return ret;
> > }
> >
> >
> > --
> > Regards/Gruss,
> > Boris.
> >
> > Operating | Advanced Micro Devices GmbH
> > System |
> Karl-Hammerschmidt-Str. 34, 85609 Dornach b. München,
> Germany
> > Research | Geschäftsführer: Andrew Bowd,
> Thomas M. McCoy, Giuliano Meroni
> > Center | Sitz: Dornach,
> Gemeinde Aschheim, Landkreis München
> > (OSRC) | Registergericht
> München, HRB Nr. 43632
> >
>
>
> ---
> ~Randy
>
prev parent reply other threads:[~2009-12-02 22:12 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-30 17:28 Randy Dunlap
2009-11-30 20:35 ` Borislav Petkov
2009-11-30 21:29 ` Randy Dunlap
2009-11-30 22:16 ` Randy Dunlap
2009-12-01 15:16 ` Borislav Petkov
2009-12-01 17:19 ` Randy Dunlap
2009-12-02 10:58 ` Borislav Petkov
2009-12-02 18:11 ` Randy Dunlap
2009-12-02 22:12 ` Doug Thompson [this message]
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=353238.3571.qm@web50101.mail.re2.yahoo.com \
--to=norsk5@yahoo.com \
--cc=borislav.petkov@amd.com \
--cc=dougthompson@xmission.com \
--cc=linux-kernel@vger.kernel.org \
--cc=petkovbb@googlemail.com \
--cc=randy.dunlap@oracle.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome