All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bill Burns <bburns@redhat.com>
To: Keir Fraser <Keir.Fraser@cl.cam.ac.uk>
Cc: Ian Pratt <Ian.Pratt@eu.citrix.com>,
	xen-devel@lists.xensource.com, "Carb,
	Brian A" <Brian.Carb@unisys.com>
Subject: Re: Test results on Unisys ES7000 64x 256gb using unstablec/s 16693 on 3.2.0 Release Candidate
Date: Thu, 31 Jan 2008 13:12:54 -0500	[thread overview]
Message-ID: <47A20FA6.6090103@redhat.com> (raw)
In-Reply-To: <C3C65A3A.1BACA%Keir.Fraser@cl.cam.ac.uk>

[-- Attachment #1: Type: text/plain, Size: 1283 bytes --]

Keir Fraser wrote:
> On 30/1/08 16:20, "Bill Burns" <bburns@redhat.com> wrote:
> 
>> Until we get to scrubing free ram:
>>
>> (XEN) Initrd len 0x894600, start at 0xffffffff80702000
>> (XEN) Scrubbing Free RAM: ---0: 80000000 498c0b61 -2
>> (XEN) .done.
> 
> That error factor (0x80000000) is as bad as it possibly can be. This means
> that local_stime is running at least one second ahead of master_stime.
> Probably the platform timer (which is used to compute master_stime) has gone
> mad. In this case of course the platform timer is the ACPI PM timer.
> 
> I suggest instrumenting read_pmtimer_count() to see what value is getting
> returned from there, to ensure it is monotonically increasing at about the
> right rate. And also that it *is* actually getting invoked!
> 

I instrumented read_pmtimer_count and it does get called a couple
of times during startup and it returns an increasing value. I made
no attempt to determine if the rate was correct.

I also tried the 3.1.3 and 3.2.0 Hypervisors and they exhibit
the same problem on the es7000.

It's not clear if is this a platform specific problem
or not. So far the only reports of the problem are on the
es7000. So for now I am running the attached patch to
avoid the pmtimer on es7000 only.

 Bill


>  -- Keir
> 
> 


[-- Attachment #2: xen-es7000-nopmtimer.patch --]
[-- Type: text/x-patch, Size: 435 bytes --]

--- xen/arch/x86/genapic/es7000plat.c.orig	2007-12-06 12:48:38.000000000 -0500
+++ xen/arch/x86/genapic/es7000plat.c	2008-01-31 11:56:30.000000000 -0500
@@ -296,9 +296,14 @@ es7000_stop_cpu(int cpu)
 
 }
 
+extern u32 pmtmr_ioport;
+
 void __init
 es7000_sw_apic()
 {
+	/* don't use pmtimer on es7000 */
+	pmtmr_ioport = 0;
+  
 	if (es7000_plat && (es7000_plat != ES7000_ZORRO)) {
 		int mip_status;
 		struct mip_reg es7000_mip_reg;

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

  reply	other threads:[~2008-01-31 18:12 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-10  2:15 Test results on Unisys ES7000 64x 256gb using unstable c/s 16693 on 3.2.0 Release Candidate Carb, Brian A
2008-01-15 13:50 ` Bill Burns
2008-01-15 14:44   ` Keir Fraser
2008-01-15 16:15     ` Bill Burns
2008-01-15 16:29       ` Keir Fraser
2008-01-16 15:45         ` Bill Burns
2008-01-17 14:10           ` Test results on Unisys ES7000 64x 256gb using unstablec/s " Ian Pratt
2008-01-18 13:03             ` Bill Burns
2008-01-24 17:23               ` Bill Burns
2008-01-25 13:06                 ` Bill Burns
2008-01-28 14:02                   ` Bill Burns
2008-01-28 14:08                     ` Keir Fraser
2008-01-28 20:38                       ` Test results on Unisys ES7000 64x 256gb usingunstablec/s " Carb, Brian A
2008-01-28 21:12                         ` Bill Burns
2008-01-29  8:44                         ` Test results on Unisys ES7000 64x 256gbusingunstablec/s " Jan Beulich
2008-01-30 16:20                       ` Test results on Unisys ES7000 64x 256gb using unstablec/s " Bill Burns
2008-01-30 16:45                         ` Keir Fraser
2008-01-31 18:12                           ` Bill Burns [this message]
2008-02-01  8:36                             ` Keir Fraser
2008-02-01 12:40                               ` Bill Burns
2008-02-01 20:10                                 ` Bill Burns
2008-02-08 13:49                                   ` Large system boot problems Bill Burns
2008-02-08 14:04                                     ` Keir Fraser
2008-02-08 15:10                                       ` Bill Burns
2008-02-08 15:14                                         ` Keir Fraser
2008-02-08 15:22                                           ` Bill Burns
2008-02-08 15:45                                             ` Keir Fraser
2008-02-12 16:34                                               ` Bill Burns
2008-02-12 16:54                                                 ` Keir Fraser

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=47A20FA6.6090103@redhat.com \
    --to=bburns@redhat.com \
    --cc=Brian.Carb@unisys.com \
    --cc=Ian.Pratt@eu.citrix.com \
    --cc=Keir.Fraser@cl.cam.ac.uk \
    --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.