1. 05 7月, 2011 3 次提交
  2. 14 6月, 2011 1 次提交
    • G
      usb: cancel async packets on unplug · 07771f6f
      Gerd Hoffmann 提交于
      This patch adds USBBusOps struct with (for now) only a single callback
      which is called when a device is about to be destroyed.  The USB Host
      adapters are implementing this callback and use it to cancel any async
      requests which might be in flight before the device actually goes away.
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      07771f6f
  3. 26 5月, 2011 1 次提交
  4. 09 5月, 2011 1 次提交
    • G
      usb-musb: uninline functions · b3e5759e
      Gerd Hoffmann 提交于
      Prototype without "inline" keyword breaks the build with some gcc
      versions.  Noticed by Alexander Graf.
      
      Fix this by removing the inline keywork everywhere.  Some functions
      can't be inlined anyway as the are referenced using function pointers.
      Beside that gcc does a pretty good job on auto-inlining these days.
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      b3e5759e
  5. 04 5月, 2011 2 次提交
  6. 21 3月, 2011 1 次提交
    • P
      change all other clock references to use nanosecond resolution accessors · 74475455
      Paolo Bonzini 提交于
      This was done with:
      
          sed -i 's/qemu_get_clock\>/qemu_get_clock_ns/' \
              $(git grep -l 'qemu_get_clock\>' )
          sed -i 's/qemu_new_timer\>/qemu_new_timer_ns/' \
              $(git grep -l 'qemu_new_timer\>' )
      
      after checking that get_clock and new_timer never occur twice
      on the same line.  There were no missed occurrences; however, even
      if there had been, they would have been caught by the compiler.
      
      There was exactly one false positive in qemu_run_timers:
      
           -    current_time = qemu_get_clock (clock);
           +    current_time = qemu_get_clock_ns (clock);
      
      which is of course not in this patch.
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      74475455
  7. 12 1月, 2011 5 次提交
  8. 12 12月, 2010 1 次提交
  9. 19 12月, 2009 1 次提交
  10. 05 10月, 2009 1 次提交
  11. 02 10月, 2009 2 次提交
  12. 11 9月, 2009 1 次提交
  13. 10 9月, 2009 2 次提交
  14. 26 8月, 2009 1 次提交
  15. 17 7月, 2009 1 次提交
  16. 10 5月, 2009 1 次提交
  17. 08 5月, 2009 1 次提交
  18. 05 1月, 2009 1 次提交
  19. 22 4月, 2008 1 次提交