# HG changeset patch # User kaf24@firebug.cl.cam.ac.uk # Date 1154961745 -3600 # Node ID 47af0e2ebb1369e36c203ee10246ff3a79255b23 # Parent 16aa4b417c6b97c9378b4b44df57fc3bd3b1d2be [XEN] Allow users to specify mce/nomce boot parameters. Signed-off-by: Arun Sharma diff -r 16aa4b417c6b -r 47af0e2ebb13 xen/arch/x86/cpu/mcheck/mce.c --- a/xen/arch/x86/cpu/mcheck/mce.c Mon Aug 07 15:35:06 2006 +0100 +++ b/xen/arch/x86/cpu/mcheck/mce.c Mon Aug 07 15:42:25 2006 +0100 @@ -69,5 +69,5 @@ static int __init mcheck_enable(char *st return 0; } -__setup("nomce", mcheck_disable); -__setup("mce", mcheck_enable); +custom_param("nomce", mcheck_disable); +custom_param("mce", mcheck_enable);