mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Avi Kivity <avi@qumranet.com>
To: Luca Tettamanti <kronos.it@gmail.com>
Cc: kvm-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org
Subject: Re: [kvm-devel] [BUG] Oops with KVM-27
Date: Wed, 13 Jun 2007 11:59:25 +0300	[thread overview]
Message-ID: <466FB1ED.3090905@qumranet.com> (raw)
In-Reply-To: <20070612175246.GA5864@dreamland.darkstar.lan>

Luca Tettamanti wrote:
> Il Mon, Jun 11, 2007 at 10:44:45AM +0300, Avi Kivity ha scritto: 
>   
>> Luca wrote:
>>     
>>>> I've managed to reproduce this on kvm-21 (it takes many boots for this
>>>> to happen, but it does eventually).
>>>>         
>>> Hum, any clue on the cause? 
>>>       
>> From what I've seen, it's the new Linux clocksource code.
>>
>>     
>>> Should I test older versions?
>>>       
>> They're unlikely to be better.  Instead, it would be best to see what 
>> the guest is doing.
>>     
>
> RCU is not working. Network initialization hangs because it happens to
> be the first RCU user.
> The guest is stuck waiting for RCU syncronization:
>
> [    4.992207]  [<c04321c5>] synchronize_rcu+0x4e/0x80
> [    4.994379]  [<c0431db5>] wakeme_after_rcu+0x0/0x8
> [    4.996521]  [<c0599ad1>] synchronize_net+0x64/0x8c
> [    4.998678]  [<c05d70e0>] inet_register_protosw+0xef/0x151
> [    5.000984]  [<c072d79e>] inet_init+0x1cd/0x498
>
> wait_for_completion() in synchronize_rcu() calls schedule() and the
> completion is never signaled (wakeme_after_rcu is never called).
> The completion AFAICS would be signaled via rcu_process_callbacks(),
> which is called in tasklet context.
> Scheduler and completion are working fine since they're used in other
> part of the kernel without problems.
>
> To recap:
>
> i686 F7 kernel: always works.
>
> i586 F7 kernel: sometime hangs due to RCU problems. When it does work
> it's because the LAPIC is disabled on boot:
>
> Using local APIC timer interrupts.
> calibrating APIC timer ...
> ... lapic delta = 25745109
> ... PM timer delta = 0
> ..... delta 25745109
> ..... mult: 1105912110
> ..... calibration result: 4119217
> ..... CPU clock speed is 8794.0417 MHz.
> ..... host bus clock speed is 4119.0217 MHz.
> ... verify APIC timer
> ... jiffies delta = 103
> APIC timer disabled due to verification failure.
>
> When it doesn't work LAPIC passes the test:
>
> [    1.304717] Using local APIC timer interrupts.
> [    1.304719] calibrating APIC timer ...
> [    1.718823] ... lapic delta = 25251444
> [    1.720582] ... PM timer delta = 0
> [    1.722219] ..... delta 25251444
> [    1.723827] ..... mult: 1084706136
> [    1.725470] ..... calibration result: 4040231
> [    1.727374] ..... CPU clock speed is 8625.0780 MHz.
> [    1.729396] ..... host bus clock speed is 4040.0231 MHz.
> [    1.731540] ... verify APIC timer
> [    2.158342] ... jiffies delta = 102
> [    2.160035] ... jiffies result ok
>
> i586 F7 kernel, with 'nolapic': always works.
>   

Can you check which .config option causes it (a special type of 
bisecting...)?

This looks likely based on your findings:

-CONFIG_X86_ALIGNMENT_16=y
+CONFIG_X86_GOOD_APIC=y
 CONFIG_X86_INTEL_USERCOPY=y
+CONFIG_X86_USE_PPRO_CHECKSUM=y
+CONFIG_X86_TSC=y

I expect it's not directly related to i586 vs i686.


-- 
error compiling committee.c: too many arguments to function


  reply	other threads:[~2007-06-13  8:59 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-03 21:34 Luca Tettamanti
2007-06-04  9:35 ` [kvm-devel] " Avi Kivity
2007-06-04 20:22   ` Luca Tettamanti
2007-06-04 20:51     ` Avi Kivity
2007-06-04 21:22       ` Luca Tettamanti
2007-06-05  7:27         ` Avi Kivity
2007-06-07 19:16           ` Luca
2007-06-10 12:22             ` Avi Kivity
2007-06-10 20:54               ` Luca
2007-06-11  7:44                 ` Avi Kivity
2007-06-11 21:06                   ` Luca
2007-06-12  6:44                     ` Avi Kivity
2007-06-12 17:52                   ` Luca Tettamanti
2007-06-13  8:59                     ` Avi Kivity [this message]
2007-06-13 20:49                       ` Luca Tettamanti
2007-06-14  8:26                         ` Avi Kivity
2007-06-14 22:33                           ` Luca Tettamanti
2007-06-14 22:53                           ` Luca Tettamanti
2007-06-14 23:13                             ` Luca Tettamanti
2007-06-14 23:27                               ` Luca
2007-06-15  9:06                                 ` Avi Kivity
2007-06-15 21:49                                   ` Luca Tettamanti
2007-06-16  7:43                                     ` Avi Kivity
2007-06-17 15:14                                       ` Luca Tettamanti
2007-06-17 15:24                                         ` Avi Kivity
2007-06-17 16:52                                           ` [PATCH 1/2] kvm: Fix x86 emulator writeback Luca Tettamanti
2007-06-17 16:58                                             ` Avi Kivity
2007-06-18 10:07                                             ` Avi Kivity
2007-06-18 11:32                                               ` Avi Kivity
2007-06-19 20:25                                                 ` Luca Tettamanti
2007-06-19 20:41                                                   ` Luca Tettamanti
2007-06-20  7:47                                                     ` Avi Kivity
2007-06-19 20:41                                                   ` [PATCH 2/2] kvm: avoid useless memory write when possible Luca Tettamanti
2007-06-17 16:52                                           ` Luca Tettamanti

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=466FB1ED.3090905@qumranet.com \
    --to=avi@qumranet.com \
    --cc=kronos.it@gmail.com \
    --cc=kvm-devel@lists.sourceforge.net \
    --cc=linux-kernel@vger.kernel.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome