From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: "Liu, Jinsong" <jinsong.liu@intel.com>
Cc: Borislav Petkov <bp@amd64.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Luck, Tony" <tony.luck@intel.com>,
"xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Subject: Re: [Xen-devel] [PATCH 1/3] xen/mce: Add mcelog support for Xen platform (v2)
Date: Fri, 25 May 2012 14:01:02 -0400 [thread overview]
Message-ID: <20120525180102.GA27280@phenom.dumpdata.com> (raw)
In-Reply-To: <DE8DF0795D48FD4CA783C40EC82923351F0C4E@SHSMSX101.ccr.corp.intel.com>
On Fri, May 25, 2012 at 05:56:56PM +0000, Liu, Jinsong wrote:
> Konrad Rzeszutek Wilk wrote:
> >>>>>> -static struct miscdevice mce_chrdev_device = {
> >>>>>> +struct miscdevice mce_chrdev_device = {
> >>>>>> MISC_MCELOG_MINOR,
> >>>>>> "mcelog",
> >>>>>> &mce_chrdev_ops,
> >>>>>
> >>>>> You're still reusing those - pls, define your own 'struct
> >>>>> miscdevice mce_chrdev_device' in drivers/xen/ or somewhere
> >>>>> convenient and
> >>>>> your own mce_chrdev_ops. The only thing you should be touching in
> >>>>> arch/x86/.../mcheck/ is the export of MISC_MCELOG_MINOR.
> >>>>>
> >>>>> Thanks.
> >>>>
> >>>> I'm *not* reuse native code.
> >>>> I have defined 'struct miscdevice xen_mce_chrdev_device' in
> >>>> drivers/xen, and I also implement xen_mce_chrdev_ops, they are all
> >>>> xen-self-contained.
> >>>>
> >>>> The patch just redirect native mce_chrdev_device to
> >>>> xen_mce_chrdev_device when running under xen environment.
> >>>> It didn't change any native code (except just cancel
> >>>> mce_chrdev_device 'static'), and will not break native logic.
> >>>
> >>> Why are you doing that?
> >>>
> >>> Why don't you do
> >>>
> >>> misc_register(&xen_mce_chrdev_device);
> >>>
> >>> in xen_early_init_mcelog() ?
> >>>
> >>> This way there'll be no arch/x86/ dependencies at all.
> >>
> >> The reason is, if we do so, it would be covered by native
> >> misc_register(&mce_chrdev_device) later when native kernel init (xen
> >> init first and then start native kernel).
> >
> > Won't the second registration (so the original one) of the major
> > fail? So the mce_log would just error out since somebody already
> > registered?
>
> No, that would be device confliction, the 2nd register return as -EBUSY and un-predicetable result.
And the existing code does not actually check the 'misc_register' return
value? Ah yes. Perhaps then a fix to arch/x86/kernel/cpu/mcheck/mce.c to
do the proper de-registration if 'misc_register' fails?
Or just set 'mce_disabled=1' in the bootup of Xen, similar to
how lguest.c does it?
> I test it in your way, mcelog fail to fetch any error log.
And that is b/c of? What exactly?
>
> Thanks,
> Jinsong
next prev parent reply other threads:[~2012-05-25 18:07 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-22 5:45 [PATCH 1/3] xen/mce: Add mcelog support for Xen platform (v2) Liu, Jinsong
2012-05-22 9:23 ` Borislav Petkov
2012-05-24 10:10 ` Liu, Jinsong
2012-05-24 10:30 ` Borislav Petkov
2012-05-24 16:15 ` Liu, Jinsong
2012-05-24 16:26 ` Borislav Petkov
2012-05-24 16:52 ` Liu, Jinsong
2012-05-24 19:10 ` [Xen-devel] " Konrad Rzeszutek Wilk
2012-05-25 18:01 ` Liu, Jinsong
2012-05-25 18:03 ` Konrad Rzeszutek Wilk
2012-05-25 19:55 ` Liu, Jinsong
2012-05-25 20:23 ` Konrad Rzeszutek Wilk
2012-05-25 20:47 ` Liu, Jinsong
2012-05-25 21:15 ` Konrad Rzeszutek Wilk
2012-05-24 18:49 ` Konrad Rzeszutek Wilk
2012-05-25 17:56 ` Liu, Jinsong
2012-05-25 18:01 ` Konrad Rzeszutek Wilk [this message]
2012-05-25 18:55 ` Liu, Jinsong
[not found] ` <DE8DF0795D48FD4CA783C40EC82923351F0D53@SHSMSX101.ccr.corp.intel.com>
2012-05-28 13:36 ` Liu, Jinsong
2012-05-29 18:39 ` Konrad Rzeszutek Wilk
2012-05-30 15:14 ` Liu, Jinsong
2012-05-28 14:48 ` [PATCH 1/3] xen/mce: Add mcelog support for Xen platform (RFC) Liu, Jinsong
2012-05-29 13:38 ` Borislav Petkov
2012-05-29 16:40 ` Liu, Jinsong
2012-05-29 17:06 ` Borislav Petkov
2012-05-30 14:40 ` Liu, Jinsong
2012-05-30 15:09 ` Liu, Jinsong
2012-05-30 15:08 ` Konrad Rzeszutek Wilk
2012-05-30 15:20 ` Liu, Jinsong
2012-05-30 15:29 ` Borislav Petkov
2012-05-30 17:21 ` Liu, Jinsong
2012-05-30 17:28 ` Borislav Petkov
2012-05-31 13:00 ` Liu, Jinsong
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=20120525180102.GA27280@phenom.dumpdata.com \
--to=konrad.wilk@oracle.com \
--cc=bp@amd64.org \
--cc=jinsong.liu@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=tony.luck@intel.com \
--cc=xen-devel@lists.xensource.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 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.