From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Rzeszutek Wilk Subject: Re: [PATCH 2/4] x86, CPU: Fix show_msr MSR accessing function Date: Wed, 6 Jun 2012 16:07:15 -0400 Message-ID: <20120606200715.GC9602@phenom.dumpdata.com> References: <1338562358-28182-1-git-send-email-bp@amd64.org> <1338562358-28182-3-git-send-email-bp@amd64.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <1338562358-28182-3-git-send-email-bp@amd64.org> Sender: linux-kernel-owner@vger.kernel.org To: Borislav Petkov Cc: "H. Peter Anvin" , Jacob Shin , Andre Przywara , jeremy@goop.org, xen-devel@lists.xensource.com, LKML , Jan Beulich , Ingo Molnar , Thomas Gleixner , Borislav Petkov , Yinghai Lu List-Id: xen-devel@lists.xenproject.org On Fri, Jun 01, 2012 at 04:52:36PM +0200, Borislav Petkov wrote: > From: Borislav Petkov > > There's no real reason why, when showing the MSRs on a CPU at boottime, > we should be using the AMD-specific variant. Simply use the generic safe > one which handles #GPs just fine. Acked-by: Konrad Rzeszutek Wilk > > Cc: Yinghai Lu > Signed-off-by: Borislav Petkov > --- > arch/x86/kernel/cpu/common.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c > index 82f29e70d058..232fba2d54c9 100644 > --- a/arch/x86/kernel/cpu/common.c > +++ b/arch/x86/kernel/cpu/common.c > @@ -947,7 +947,7 @@ static void __cpuinit __print_cpu_msr(void) > index_max = msr_range_array[i].max; > > for (index = index_min; index < index_max; index++) { > - if (rdmsrl_amd_safe(index, &val)) > + if (rdmsrl_safe(index, &val)) > continue; > printk(KERN_INFO " MSR%08x: %016llx\n", index, val); > } > -- > 1.7.9.3.362.g71319