1. 25 2月, 2012 4 次提交
  2. 14 1月, 2012 1 次提交
  3. 06 12月, 2011 1 次提交
  4. 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
  5. 21 8月, 2011 1 次提交
  6. 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
  7. 13 4月, 2011 1 次提交
  8. 10 4月, 2011 4 次提交
  9. 09 10月, 2010 1 次提交
  10. 31 8月, 2010 1 次提交
  11. 16 5月, 2010 1 次提交
  12. 15 5月, 2010 4 次提交
  13. 26 4月, 2010 1 次提交
  14. 01 4月, 2010 1 次提交
  15. 30 3月, 2010 1 次提交
  16. 23 12月, 2009 1 次提交
  17. 02 12月, 2009 1 次提交
  18. 28 10月, 2009 1 次提交
  19. 15 10月, 2009 1 次提交
  20. 05 10月, 2009 2 次提交
  21. 12 9月, 2009 1 次提交
  22. 11 9月, 2009 1 次提交
  23. 28 8月, 2009 1 次提交
  24. 09 8月, 2009 1 次提交
  25. 17 7月, 2009 1 次提交
  26. 30 6月, 2009 1 次提交
  27. 22 6月, 2009 1 次提交
  28. 23 5月, 2009 1 次提交
    • P
      Add common BusState · 02e2da45
      Paul Brook 提交于
      Implement and use a common device bus state.  The main side-effect is
      that creating a bus and attaching it to a parent device are no longer
      separate operations.  For legacy code we allow a NULL parent, but that
      should go away eventually.
      
      Also tweak creation code to veriry theat a device in on the right bus.
      Signed-off-by: NPaul Brook <paul@codesourcery.com>
      02e2da45
  29. 22 5月, 2009 1 次提交
    • J
      Introduce reset notifier order · 8217606e
      Jan Kiszka 提交于
      Add the parameter 'order' to qemu_register_reset and sort callbacks on
      registration. On system reset, callbacks with lower order will be
      invoked before those with higher order. Update all existing users to the
      standard order 0.
      
      Note: At least for x86, the existing users seem to assume that handlers
      are called in their registration order. Therefore, the patch preserves
      this property. If someone feels bored, (s)he could try to identify this
      dependency and express it properly on callback registration.
      Signed-off-by: NJan Kiszka <jan.kiszka@siemens.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      8217606e
  30. 04 5月, 2009 1 次提交