Skip to content
  1. Apr 07, 2016
  2. Apr 06, 2016
  3. Apr 05, 2016
    • Luiz Capitulino's avatar
      kvm: x86: make lapic hrtimer pinned · 61abdbe0
      Luiz Capitulino authored
      
      
      When a vCPU runs on a nohz_full core, the hrtimer used by
      the lapic emulation code can be migrated to another core.
      When this happens, it's possible to observe milisecond
      latency when delivering timer IRQs to KVM guests.
      
      The huge latency is mainly due to the fact that
      apic_timer_fn() expects to run during a kvm exit. It
      sets KVM_REQ_PENDING_TIMER and let it be handled on kvm
      entry. However, if the timer fires on a different core,
      we have to wait until the next kvm exit for the guest
      to see KVM_REQ_PENDING_TIMER set.
      
      This problem became visible after commit 9642d18e. This
      commit changed the timer migration code to always attempt
      to migrate timers away from nohz_full cores. While it's
      discussable if this is correct/desirable (I don't think
      it is), it's clear that the lapic emulation code has
      a requirement on firing the hrtimer in the same core
      where it was started. This is achieved by making the
      hrtimer pinned.
      
      Lastly, note that KVM has code to migrate timers when a
      vCPU is scheduled to run in different core. However, this
      forced migration may fail. When this happens, we can have
      the same problem. If we want 100% correctness, we'll have
      to modify apic_timer_fn() to cause a kvm exit when it runs
      on a different core than the vCPU. Not sure if this is
      possible.
      
      Here's a reproducer for the issue being fixed:
      
       1. Set all cores but core0 to be nohz_full cores
       2. Start a guest with a single vCPU
       3. Trace apic_timer_fn() and kvm_inject_apic_timer_irqs()
      
      You'll see that apic_timer_fn() will run in core0 while
      kvm_inject_apic_timer_irqs() runs in a different core. If
      you get both on core0, try running a program that takes 100%
      of the CPU and pin it to core0 to force the vCPU out.
      
      Signed-off-by: default avatarLuiz Capitulino <lcapitulino@redhat.com>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      61abdbe0
    • Christian Borntraeger's avatar
      s390/mm/kvm: fix mis-merge in gmap handling · 9c650d09
      Christian Borntraeger authored
      
      
      commit 1e133ab2 ("s390/mm: split arch/s390/mm/pgtable.c") dropped
      some changes from commit a3a92c31 ("KVM: s390: fix mismatch
      between user and in-kernel guest limit") - this breaks KVM for some
      memory sizes (kvm-s390: failed to commit memory region) like
      exactly 2GB.
      
      Cc: Dominik Dingel <dingel@linux.vnet.ibm.com>
      Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
      Acked-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
      Signed-off-by: default avatarChristian Borntraeger <borntraeger@de.ibm.com>
      Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      9c650d09
  4. Apr 04, 2016
  5. Apr 03, 2016
  6. Apr 01, 2016
  7. Mar 31, 2016
  8. Mar 30, 2016
  9. Mar 29, 2016
    • James Hogan's avatar
      MIPS: cpu_name_string: Use raw_smp_processor_id(). · e95008a1
      James Hogan authored
      
      
      If cpu_name_string() is used in non-atomic context when preemption is
      enabled, it can trigger a BUG such as this one:
      
      BUG: using smp_processor_id() in preemptible [00000000] code: unaligned/156
      caller is __show_regs+0x1e4/0x330
      CPU: 2 PID: 156 Comm: unaligned Tainted: G        W       4.3.0-00366-ga3592179816d-dirty #1501
      Stack : ffffffff80900000 ffffffff8019bc18 000000000000005f ffffffff80a20000
               0000000000000000 0000000000000009 ffffffff8019c0e0 ffffffff80835648
               a8000000ff2bdec0 ffffffff80a1e628 000000000000009c 0000000000000002
               ffffffff80840000 a8000000fff2ffb0 0000000000000020 ffffffff8020e43c
               a8000000fff2fcf8 ffffffff80a20000 0000000000000000 ffffffff808f2607
               ffffffff8082b138 ffffffff8019cd1c 0000000000000030 ffffffff8082b138
               0000000000000002 000000000000009c 0000000000000000 0000000000000000
               0000000000000000 a8000000fff2fc40 0000000000000000 ffffffff8044dbf4
               0000000000000000 0000000000000000 0000000000000000 ffffffff8010c400
               ffffffff80855bb0 ffffffff8010d008 0000000000000000 ffffffff8044dbf4
               ...
      Call Trace:
      [<ffffffff8010d008>] show_stack+0x90/0xb0
      [<ffffffff8044dbf4>] dump_stack+0x84/0xe0
      [<ffffffff8046d4ec>] check_preemption_disabled+0x10c/0x110
      [<ffffffff8010c40c>] __show_regs+0x1e4/0x330
      [<ffffffff8010d060>] show_registers+0x28/0xc0
      [<ffffffff80110748>] do_ade+0xcc8/0xce0
      [<ffffffff80105b84>] resume_userspace_check+0x0/0x10
      
      This is possible because cpu_name_string() is used by __show_regs(),
      which is used by both show_regs() and show_registers(). These two
      functions are used by various exception handling functions, only some of
      which ensure that interrupts or preemption is disabled.
      
      However the following have interrupts explicitly enabled or not
      explicitly disabled:
      - do_reserved() (irqs enabled)
      - do_ade() (irqs not disabled)
      
      This can be hit by setting /sys/kernel/debug/mips/unaligned_action to 2,
      and triggering an address error exception, e.g. an unaligned access or
      access to kernel segment from user mode.
      
      To fix the above cases, use raw_smp_processor_id() instead. It is
      unusual for CPU names to be different in the same system, and even if
      they were, its possible the process has migrated between the exception
      of interest and the cpu_name_string() call anyway.
      
      Signed-off-by: default avatarJames Hogan <james.hogan@imgtec.com>
      Cc: linux-mips@linux-mips.org
      Patchwork: https://patchwork.linux-mips.org/patch/12212/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      e95008a1
    • Manuel Lauss's avatar
      pcmcia: db1xxx_ss: fix last irq_to_gpio user · e34b6fcf
      Manuel Lauss authored
      
      
      remove the usage of removed irq_to_gpio() function.  On pre-DB1200
      boards, pass the actual carddetect GPIO number instead of the IRQ,
      because we need the gpio to actually test card status (inserted or
      not) and can get the irq number with gpio_to_irq() instead.
      
      Tested on DB1300 and DB1500, this patch fixes PCMCIA on the DB1500,
      which used irq_to_gpio().
      
      Fixes: 832f5dac ("MIPS: Remove all the uses of custom gpio.h")
      Signed-off-by: default avatarManuel Lauss <manuel.lauss@gmail.com>
      Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
      Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
      Cc: linux-pcmcia@lists.infradead.org
      Cc: Linux-MIPS <linux-mips@linux-mips.org>
      Cc: stable@vger.kernel.org	# v4.3+
      Patchwork: https://patchwork.linux-mips.org/patch/12747/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      e34b6fcf
    • Will Deacon's avatar
      arm64: defconfig: updates for 4.6 · 431597bb
      Will Deacon authored
      
      
      A few defconfig updates got dropped on the floor during the merge window,
      so I've rounded up the remainder here:
      
        * Fix duplicate definition of MMC_BLOCK_MINORS and bump to 32 for
          msm8916
      
        * CPUFreq support for the Juno platform, using the MHU/SCPI interface
      
        * Removal of the default command line, which assumed a console called
          ttyAMA0
      
        * Bits and pieces for the Hi6220 (96Boards HiKey)
      
      Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
      431597bb
    • Shannon Zhao's avatar
      arm64: perf: Move PMU register related defines to asm/perf_event.h · b8cfadfc
      Shannon Zhao authored
      
      
      To use the ARMv8 PMU related register defines from the KVM code, we move
      the relevant definitions to asm/perf_event.h header file and rename them
      with prefix ARMV8_PMU_. This allows us to get rid of kvm_perf_event.h.
      
      Signed-off-by: default avatarAnup Patel <anup.patel@linaro.org>
      Signed-off-by: default avatarShannon Zhao <shannon.zhao@linaro.org>
      Acked-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
      Reviewed-by: default avatarAndrew Jones <drjones@redhat.com>
      Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
      Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
      b8cfadfc
    • James Morse's avatar
      arm64: opcodes.h: Add arm big-endian config options before including arm header · a6002ec5
      James Morse authored
      
      
      arm and arm64 use different config options to specify big endian. This
      needs taking into account when including code/headers between the two
      architectures.
      
      A case in point is PAN, which uses the __instr_arm() macro to output
      instructions. The macro comes from opcodes.h, which lives under arch/arm.
      On a big-endian build the mismatched config options mean the instruction
      isn't byte swapped correctly, resulting in undefined instruction exceptions
      during boot:
      
      | alternatives: patching kernel code
      | kdevtmpfs[87]: undefined instruction: pc=ffffffc0004505b4
      | kdevtmpfs[87]: undefined instruction: pc=ffffffc00076231c
      | kdevtmpfs[87]: undefined instruction: pc=ffffffc00076231c
      | kdevtmpfs[87]: undefined instruction: pc=ffffffc00076231c
      | kdevtmpfs[87]: undefined instruction: pc=ffffffc00076231c
      | kdevtmpfs[87]: undefined instruction: pc=ffffffc00076231c
      | kdevtmpfs[87]: undefined instruction: pc=ffffffc00076231c
      | kdevtmpfs[87]: undefined instruction: pc=ffffffc00076231c
      | kdevtmpfs[87]: undefined instruction: pc=ffffffc00076231c
      | kdevtmpfs[87]: undefined instruction: pc=ffffffc00076231c
      | Internal error: Oops - undefined instruction: 0 [#1] SMP
      | Modules linked in:
      | CPU: 0 PID: 87 Comm: kdevtmpfs Not tainted 4.1.16+ #5
      | Hardware name: Hisilicon PhosphorHi1382 EVB (DT)
      | task: ffffffc336591700 ti: ffffffc3365a4000 task.ti: ffffffc3365a4000
      | PC is at dump_instr+0x68/0x100
      | LR is at do_undefinstr+0x1d4/0x2a4
      | pc : [<ffffffc00076231c>] lr : [<ffffffc0000811d4>] pstate: 604001c5
      | sp : ffffffc3365a6450
      
      Cc: <stable@vger.kernel.org> #4.3.x-
      Reported-by: default avatarHanjun Guo <guohanjun@huawei.com>
      Tested-by: default avatarXuefeng Wang <wxf.wang@hisilicon.com>
      Signed-off-by: default avatarJames Morse <james.morse@arm.com>
      Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
      a6002ec5
Loading