1. 09 4月, 2013 2 次提交
  2. 05 4月, 2013 5 次提交
  3. 04 4月, 2013 1 次提交
  4. 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
  5. 21 1月, 2013 1 次提交
  6. 19 12月, 2012 2 次提交
  7. 04 12月, 2012 4 次提交
  8. 05 10月, 2012 1 次提交
  9. 14 8月, 2012 1 次提交
    • L
      qmp: add SUSPEND_DISK event · 25df49f6
      Luiz Capitulino 提交于
      Emitted when the guest makes a request to enter S4 state.
      
      There are three possible ways of having this event, as described here:
      
       http://lists.gnu.org/archive/html/qemu-devel/2012-07/msg02307.html
      
      I've decided to add a new event and make it indepedent of SHUTDOWN.
      This means that the SHUTDOWN event will eventually follow the
      SUSPEND_DISK event.
      
      I've choosen this way because of two reasons:
      
       1. Having an indepedent event makes it possible to query for its
          existence by using query-events
      
       2. In the future, we may allow the user to change what QEMU should
          do as a result of the guest entering S4. So it's a good idea to
          keep both events separated
      Signed-off-by: NLuiz Capitulino <lcapitulino@redhat.com>
      25df49f6
  10. 20 6月, 2012 1 次提交
    • G
      Add PIIX4 properties to control PM system states. · 459ae5ea
      Gleb Natapov 提交于
      This patch adds two things. First it allows QEMU to distinguish between
      regular powerdown and S4 powerdown. Later separate QMP notification will
      be added for S4 powerdown. Second it allows S3/S4 states to be disabled
      from QEMU command line. Some guests known to be broken with regards to
      power management, but allow to use it anyway. Using new properties
      management will be able to disable S3/S4 for such guests.
      
      Supported system state are passed to a firmware using new fw_cfg file.
      The file contains  6 byte array. Each byte represents one system
      state. If byte at offset X has its MSB set it means that system state
      X is supported and to enter it guest should use the value from lowest 3
      bits.
      Signed-off-by: NGleb Natapov <gleb@redhat.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      459ae5ea
  11. 25 2月, 2012 6 次提交
  12. 14 1月, 2012 1 次提交
  13. 06 12月, 2011 1 次提交
  14. 03 9月, 2011 1 次提交
    • S
      Use new macro QEMU_PACKED for packed structures · 541dc0d4
      Stefan Weil 提交于
      Most changes were made using these commands:
      
      git grep -la '__attribute__((packed))'|xargs perl -pi -e 's/__attribute__\(\(packed\)\)/QEMU_PACKED/'
      git grep -la '__attribute__ ((packed))'|xargs perl -pi -e 's/__attribute__ \(\(packed\)\)/QEMU_PACKED/'
      git grep -la '__attribute__((__packed__))'|xargs perl -pi -e 's/__attribute__\(\(__packed__\)\)/QEMU_PACKED/'
      git grep -la '__attribute__ ((__packed__))'|xargs perl -pi -e 's/__attribute__ \(\(__packed__\)\)/QEMU_PACKED/'
      git grep -la '__attribute((packed))'|xargs perl -pi -e 's/__attribute\(\(packed\)\)/QEMU_PACKED/'
      
      Whitespace in linux-user/syscall_defs.h was fixed manually
      to avoid warnings from scripts/checkpatch.pl.
      
      Manual changes were also applied to hw/pc.c.
      
      I did not fix indentation with tabs in block/vvfat.c.
      The patch will show 4 errors with scripts/checkpatch.pl.
      Signed-off-by: NStefan Weil <weil@mail.berlios.de>
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      541dc0d4
  15. 21 8月, 2011 1 次提交
  16. 30 7月, 2011 1 次提交
    • M
      revamp acpitable parsing and allow to specify complete (headerful) table · 104bf02e
      Michael Tokarev 提交于
      This patch almost rewrites acpi_table_add() function
      (but still leaves it using old get_param_value() interface).
      The result is that it's now possible to specify whole table
      (together with a header) in an external file, instead of just
      data portion, with a new file= parameter, but at the same time
      it's still possible to specify header fields as before.
      
      Now with the checkpatch.pl formatting fixes, thanks to
      Stefan Hajnoczi for suggestions, with changes from
      Isaku Yamahata, and with my further refinements.
      Signed-off-by: NMichael Tokarev <mjt@tls.msk.ru>
      Cc: Isaku Yamahata <yamahata@valinux.co.jp>
      Cc: John Baboval <john.baboval@virtualcomputer.com>
      Cc: Blue Swirl <blauwirbel@gmail.com>
      [yamahata@valinux.co.jp: fix compile error, comment fallthrough]
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      104bf02e
  17. 13 4月, 2011 1 次提交
  18. 10 4月, 2011 4 次提交
  19. 09 10月, 2010 1 次提交
  20. 31 8月, 2010 1 次提交
  21. 16 5月, 2010 1 次提交
  22. 15 5月, 2010 2 次提交