From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Colp Subject: Re: [PATCH] TSC scaling for live migration between platforms with different TSC frequecies Date: Thu, 18 Jun 2009 10:10:57 +0100 Message-ID: <4A3A04A1.9020307@cs.ubc.ca> References: <706158FABBBA044BAD4FE898A02E4BC201BD7DB7D2@pdsmsx503.ccr.corp.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <706158FABBBA044BAD4FE898A02E4BC201BD7DB7D2@pdsmsx503.ccr.corp.intel.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Xiantao Zhang Cc: "xen-devel@lists.xensource.com" , Keir Fraser List-Id: xen-devel@lists.xenproject.org >+ printk("Migrate to a platform with different freq:%ldMhz, " >+ "expected freq:%dMhz, enable rdtsc exiting!\n", >+ cpu_khz / 1000, hdr->gtsc_khz / 1000); Being pedantic, this should probably be: printk("Migrate to a platform with different freq: %ldMHz, " "expected freq: %dMHz, enable rdtsc exiting!\n", cpu_khz / 1000, hdr->gtsc_khz / 1000); Patrick