Skip to content
  1. Apr 17, 2008
  2. Apr 04, 2008
  3. Mar 27, 2008
    • Jeremy Fitzhardinge's avatar
      xen: fix UP setup of shared_info · 2e8fe719
      Jeremy Fitzhardinge authored
      
      
      We need to set up the shared_info pointer once we've mapped the real
      shared_info into its fixmap slot.  That needs to happen once the general
      pagetable setup has been done.  Previously, the UP shared_info was set
      up one in xen_start_kernel, but that was left pointing to the dummy
      shared info.  Unfortunately there's no really good place to do a later
      setup of the shared_info in UP, so just do it once the pagetable setup
      has been done.
      
      [ Stable: needed in 2.6.24.x ]
      
      Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
      Cc: Stable Kernel <stable@kernel.org>
      Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
      2e8fe719
    • Jeremy Fitzhardinge's avatar
      xen: fix RMW when unmasking events · 04c44a08
      Jeremy Fitzhardinge authored
      
      
      xen_irq_enable_direct and xen_sysexit were using "andw $0x00ff,
      XEN_vcpu_info_pending(vcpu)" to unmask events and test for pending ones
      in one instuction.
      
      Unfortunately, the pending flag must be modified with a locked operation
      since it can be set by another CPU, and the unlocked form of this
      operation was causing the pending flag to get lost, allowing the processor
      to return to usermode with pending events and ultimately deadlock.
      
      The simple fix would be to make it a locked operation, but that's rather
      costly and unnecessary.  The fix here is to split the mask-clearing and
      pending-testing into two instructions; the interrupt window between
      them is of no concern because either way pending or new events will
      be processed.
      
      This should fix lingering bugs in using direct vcpu structure access too.
      
      [ Stable: needed in 2.6.24.x ]
      
      Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
      Cc: Stable <stable@kernel.org>
      Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
      04c44a08
  4. Mar 04, 2008
  5. Feb 29, 2008
  6. Feb 13, 2008
  7. Feb 09, 2008
  8. Jan 30, 2008
  9. Jan 24, 2008
  10. Dec 11, 2007
  11. Nov 29, 2007
  12. Oct 23, 2007
  13. Oct 17, 2007
    • Joe Korty's avatar
      x86: expand /proc/interrupts to include missing vectors, v2 · 38e760a1
      Joe Korty authored
      
      
      Add missing IRQs and IRQ descriptions to /proc/interrupts.
      
      /proc/interrupts is most useful when it displays every IRQ vector in use by
      the system, not just those somebody thought would be interesting.
      
      This patch inserts the following vector displays to the i386 and x86_64
      platforms, as appropriate:
      
      	rescheduling interrupts
      	TLB flush interrupts
      	function call interrupts
      	thermal event interrupts
      	threshold interrupts
      	spurious interrupts
      
      A threshold interrupt occurs when ECC memory correction is occuring at too
      high a frequency.  Thresholds are used by the ECC hardware as occasional
      ECC failures are part of normal operation, but long sequences of ECC
      failures usually indicate a memory chip that is about to fail.
      
      Thermal event interrupts occur when a temperature threshold has been
      exceeded for some CPU chip.  IIRC, a thermal interrupt is also generated
      when the temperature drops back to a normal level.
      
      A spurious interrupt is an interrupt that was raised then lowered by the
      device before it could be fully processed by the APIC.  Hence the apic sees
      the interrupt but does not know what device it came from.  For this case
      the APIC hardware will assume a vector of 0xff.
      
      Rescheduling, call, and TLB flush interrupts are sent from one CPU to
      another per the needs of the OS.  Typically, their statistics would be used
      to discover if an interrupt flood of the given type has been occuring.
      
      AK: merged v2 and v4 which had some more tweaks
      AK: replace Local interrupts with Local timer interrupts
      AK: Fixed description of interrupt types.
      
      [ tglx: arch/x86 adaptation ]
      [ mingo: small cleanup ]
      
      Signed-off-by: default avatarJoe Korty <joe.korty@ccur.com>
      Signed-off-by: default avatarAndi Kleen <ak@suse.de>
      Cc: Tim Hockin <thockin@hockin.org>
      Cc: Andi Kleen <ak@suse.de>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: "H. Peter Anvin" <hpa@zytor.com>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      38e760a1
    • Jesper Juhl's avatar
      i386: Clean up duplicate includes in arch/i386/xen/ · fb893e99
      Jesper Juhl authored
      
      
      This patch cleans up duplicate includes in
      	arch/i386/xen/
      
      [ tglx: arch/x86 adaptation ]
      
      Signed-off-by: default avatarJesper Juhl <jesper.juhl@gmail.com>
      Signed-off-by: default avatarAndi Kleen <ak@suse.de>
      Cc: Jeremy Fitzhardinge <jeremy@goop.org>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      fb893e99
    • H. Peter Anvin's avatar
      [x86] remove uses of magic macros for boot_params access · 30c82645
      H. Peter Anvin authored
      
      
      Instead of using magic macros for boot_params access, simply use the
      boot_params structure.
      
      Signed-off-by: default avatarH. Peter Anvin <hpa@zytor.com>
      30c82645
Loading