1. 15 7月, 2013 1 次提交
    • P
      hw/cpu/a15mpcore: Correct default value for num-irq · 52862242
      Peter Maydell 提交于
      The a15mpcore device claims that its default value for num-irq
      is the number of interrupts used by the A15MP in the vexpress-a15
      board. However that chip has 128 external interrupts, not 64.
      Since there is only one A15 based model in QEMU currently, we
      can fix this by simply changing the default value.
      
      This error was causing recent (3.10) Linux kernels to print
      warnings/backtraces when the number of interrupts reported
      by the GIC was smaller than an interrupt number they wanted
      to use.
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Message-id: 1373032481-15280-1-git-send-email-peter.maydell@linaro.org
      52862242
  2. 04 7月, 2013 2 次提交
  3. 09 4月, 2013 1 次提交
  4. 05 3月, 2013 1 次提交
  5. 01 3月, 2013 1 次提交
    • P
      hw: include hw header files with full paths · 83c9f4ca
      Paolo Bonzini 提交于
      Done with this script:
      
      cd hw
      for i in `find . -name '*.h' | sed 's/^..//'`; do
        echo '\,^#.*include.*["<]'$i'[">], s,'$i',hw/&,'
      done | sed -i -f - `find . -type f`
      
      This is so that paths remain valid as files are moved.
      
      Instead, files in hw/dataplane are referenced with the relative path.
      We know they are not going to move to include/, and they are the only
      include files that are in subdirectories _and_ move.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      83c9f4ca
  6. 22 1月, 2013 1 次提交
  7. 11 1月, 2013 1 次提交
    • A
      Make all static TypeInfos const · 8c43a6f0
      Andreas Färber 提交于
      Since 39bffca2 (qdev: register all
      types natively through QEMU Object Model), TypeInfo as used in
      the common, non-iterative pattern is no longer amended with information
      and should therefore be const.
      
      Fix the documented QOM examples:
      
       sed -i 's/static TypeInfo/static const TypeInfo/g' include/qom/object.h
      
      Since frequently the wrong examples are being copied by contributors of
      new devices, fix all types in the tree:
      
       sed -i 's/^static TypeInfo/static const TypeInfo/g' */*.c
       sed -i 's/^static TypeInfo/static const TypeInfo/g' */*/*.c
      
      This also avoids to piggy-back these changes onto real functional
      changes or other refactorings.
      Signed-off-by: NAndreas Färber <afaerber@suse.de>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      8c43a6f0
  8. 19 6月, 2012 1 次提交
  9. 13 4月, 2012 4 次提交
  10. 17 2月, 2012 1 次提交