Hao, Xudong
2010-Dec-22 01:10 UTC
[Xen-devel] [PATCH 1/3] Xen MCE test: utilities to inject fake MCE for X86
A sofeware MCE injection tool, which is based on Xen MCE injection mechanism. It fake MCE error and inject this error to a assigned Domain Physical Address. Makefile make sure the tool can be built on Xen. A README explain the usage for this tool. Best Regards, Xudong Hao _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Christoph Egger
2010-Dec-22 10:15 UTC
Re: [Xen-devel] [PATCH 1/3] Xen MCE test: utilities to inject fake MCE for X86
On Wednesday 22 December 2010 02:10:22 Hao, Xudong wrote:> A sofeware MCE injection tool, which is based on Xen MCE injection > mechanism. It fake MCE error and inject this error to a assigned Domain > Physical Address. Makefile make sure the tool can be built on Xen. > A README explain the usage for this tool.getopt_long(3) is GNU specific. Please use getopt(3) instead for portability. Other than that this is fine. Christoph -- ---to satisfy European Law for business letters: Advanced Micro Devices GmbH Einsteinring 24, 85609 Dornach b. Muenchen Geschaeftsfuehrer: Alberto Bozzo, Andrew Bowd Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen Registergericht Muenchen, HRB Nr. 43632 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Hao, Xudong
2010-Dec-24 02:47 UTC
RE: [Xen-devel] [PATCH 1/3] Xen MCE test: utilities to inject fake MCE for X86
Chris, thanks comments. This patch use getopt instead of getopt_long. -Xudong Christoph Egger wrote:> On Wednesday 22 December 2010 02:10:22 Hao, Xudong wrote: >> A sofeware MCE injection tool, which is based on Xen MCE injection >> mechanism. It fake MCE error and inject this error to a assigned >> Domain Physical Address. Makefile make sure the tool can be built on >> Xen. >> A README explain the usage for this tool. > > getopt_long(3) is GNU specific. > Please use getopt(3) instead for portability. > > Other than that this is fine. > > Christoph_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Keir Fraser
2010-Dec-24 08:25 UTC
Re: [Xen-devel] [PATCH 1/3] Xen MCE test: utilities to inject fake MCE for X86
Also, please send a signed-off-by line which I can append to all patch descriptions. No need to re-send all your patches. Thanks, Keir On 24/12/2010 02:47, "Hao, Xudong" <xudong.hao@intel.com> wrote:> Chris, thanks comments. > > This patch use getopt instead of getopt_long. > > -Xudong > > Christoph Egger wrote: >> On Wednesday 22 December 2010 02:10:22 Hao, Xudong wrote: >>> A sofeware MCE injection tool, which is based on Xen MCE injection >>> mechanism. It fake MCE error and inject this error to a assigned >>> Domain Physical Address. Makefile make sure the tool can be built on >>> Xen. >>> A README explain the usage for this tool. >> >> getopt_long(3) is GNU specific. >> Please use getopt(3) instead for portability. >> >> Other than that this is fine. >> >> Christoph > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xensource.com > http://lists.xensource.com/xen-devel_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Hao, Xudong
2010-Dec-24 09:19 UTC
RE: [Xen-devel] [PATCH 1/3] Xen MCE test: utilities to inject fake MCE for X86
Utilities to inject fake MCE for x86 A sofeware MCE injection tool, which is based on Xen MCE injection mechanism. Makefile make sure the tool can be built on Xen. A README explain the usage for this tool. Signed-off-by: Yunhong Jiang <yunhong.jiang@intel.com> Signed-off-by: Haicheng Li<haicheng.li@intel.com> Signed-off-by: Xudong Hao <xudong.hao@intel.com> Keir Fraser wrote:> Also, please send a signed-off-by line which I can append to all patch > descriptions. No need to re-send all your patches. > > Thanks, > Keir > > On 24/12/2010 02:47, "Hao, Xudong" <xudong.hao@intel.com> wrote: > >> Chris, thanks comments. >> >> This patch use getopt instead of getopt_long. >> >> -Xudong >> >> Christoph Egger wrote: >>> On Wednesday 22 December 2010 02:10:22 Hao, Xudong wrote: >>>> A sofeware MCE injection tool, which is based on Xen MCE injection >>>> mechanism. It fake MCE error and inject this error to a assigned >>>> Domain Physical Address. Makefile make sure the tool can be built >>>> on Xen. A README explain the usage for this tool. >>> >>> getopt_long(3) is GNU specific. >>> Please use getopt(3) instead for portability. >>> >>> Other than that this is fine. >>> >>> Christoph >> _______________________________________________ >> Xen-devel mailing list >> Xen-devel@lists.xensource.com >> http://lists.xensource.com/xen-develThanks, Xudong _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Keir Fraser
2010-Dec-24 10:24 UTC
Re: [Xen-devel] [PATCH 1/3] Xen MCE test: utilities to inject fake MCE for X86
I took the original patch, using getopt_long. We use getopt_long in many other places (console daemon and client, xl, ...) and it provides a nicer user experience by allowing use of long option names. -- Keir On 24/12/2010 02:47, "Hao, Xudong" <xudong.hao@intel.com> wrote:> Chris, thanks comments. > > This patch use getopt instead of getopt_long. > > -Xudong > > Christoph Egger wrote: >> On Wednesday 22 December 2010 02:10:22 Hao, Xudong wrote: >>> A sofeware MCE injection tool, which is based on Xen MCE injection >>> mechanism. It fake MCE error and inject this error to a assigned >>> Domain Physical Address. Makefile make sure the tool can be built on >>> Xen. >>> A README explain the usage for this tool. >> >> getopt_long(3) is GNU specific. >> Please use getopt(3) instead for portability. >> >> Other than that this is fine. >> >> Christoph > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xensource.com > http://lists.xensource.com/xen-devel_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel