1. 02 6月, 2016 1 次提交
    • D
      net_pkt: Name vmxnet3 packet abstractions more generic · 605d52e6
      Dmitry Fleytman 提交于
      This patch drops "vmx" prefix from packet abstractions names
      to emphasize the fact they are generic and not tied to any
      specific network device.
      
      These abstractions will be reused by e1000e emulation implementation
      introduced by following patches so their names need generalization.
      
      This patch (except renamed files, adjusted comments and changes in MAINTAINTERS)
      was produced by:
      
      git grep -lz 'vmxnet_tx_pkt' | xargs -0 perl -i'' -pE "s/vmxnet_tx_pkt/net_tx_pkt/g"
      git grep -lz 'vmxnet_rx_pkt' | xargs -0 perl -i'' -pE "s/vmxnet_rx_pkt/net_rx_pkt/g"
      git grep -lz 'VmxnetTxPkt' | xargs -0 perl -i'' -pE "s/VmxnetTxPkt/NetTxPkt/g"
      git grep -lz 'VMXNET_TX_PKT' | xargs -0 perl -i'' -pE "s/VMXNET_TX_PKT/NET_TX_PKT/g"
      git grep -lz 'VmxnetRxPkt' | xargs -0 perl -i'' -pE "s/VmxnetRxPkt/NetRxPkt/g"
      git grep -lz 'VMXNET_RX_PKT' | xargs -0 perl -i'' -pE "s/VMXNET_RX_PKT/NET_RX_PKT/g"
      sed -ie 's/VMXNET_/NET_/g' hw/net/vmxnet_rx_pkt.c
      sed -ie 's/VMXNET_/NET_/g' hw/net/vmxnet_tx_pkt.c
      Signed-off-by: NDmitry Fleytman <dmitry.fleytman@ravellosystems.com>
      Signed-off-by: NLeonid Bloch <leonid.bloch@ravellosystems.com>
      Reviewed-by: NMichael S. Tsirkin <mst@redhat.com>
      Signed-off-by: NJason Wang <jasowang@redhat.com>
      605d52e6
  2. 21 4月, 2016 1 次提交
  3. 19 4月, 2016 1 次提交
  4. 13 4月, 2016 1 次提交
  5. 11 4月, 2016 1 次提交
  6. 01 4月, 2016 2 次提交
  7. 17 3月, 2016 1 次提交
  8. 11 3月, 2016 3 次提交
  9. 09 3月, 2016 1 次提交
  10. 08 3月, 2016 1 次提交
  11. 07 3月, 2016 1 次提交
  12. 03 3月, 2016 1 次提交
  13. 01 3月, 2016 2 次提交
  14. 29 2月, 2016 3 次提交
  15. 26 2月, 2016 2 次提交
  16. 22 2月, 2016 1 次提交
  17. 20 2月, 2016 1 次提交
  18. 10 2月, 2016 1 次提交
    • S
      MAINTAINERS: add all-match entry for qemu-devel@ · c9a19d5b
      Stephen Warren 提交于
      Add an entry to MAINTAINERS that matches every patch, and requests the
      user send patches to qemu-devel@nongnu.org.
      
      It's not 100% obvious to project newcomers that all patches should be sent
      there; checkpatch doesn't say so, and since it mentions other lists to CC,
      the wording "the list" from the SubmitAPatch wiki page can be taken
      to mean only those lists, not the main list too.
      
      The F: entries were taken from a similar entry in the Linux kernel.
      
      Cc: Paolo Bonzini <pbonzini@redhat.com>
      Cc: Markus Armbruster <armbru@redhat.com>
      Cc: John Snow <jsnow@redhat.com>
      Signed-off-by: NStephen Warren <swarren@wwwdotorg.org>
      Message-Id: <1454987065-12961-1-git-send-email-swarren@wwwdotorg.org>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      c9a19d5b
  19. 09 2月, 2016 1 次提交
  20. 19 1月, 2016 2 次提交
  21. 16 1月, 2016 1 次提交
    • F
      nbd: Split nbd.c · 798bfe00
      Fam Zheng 提交于
      We have NBD server code and client code, all mixed in a file. Now split
      them into separate files under nbd/, and update MAINTAINERS.
      
      filter_nbd for iotest 083 is updated to keep the log filtered out.
      Signed-off-by: NFam Zheng <famz@redhat.com>
      Message-Id: <1452760863-25350-3-git-send-email-famz@redhat.com>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      798bfe00
  22. 15 1月, 2016 1 次提交
  23. 11 1月, 2016 2 次提交
  24. 23 12月, 2015 1 次提交
  25. 22 12月, 2015 1 次提交
  26. 18 12月, 2015 1 次提交
    • D
      io: add abstract QIOChannel classes · 666a3af9
      Daniel P. Berrange 提交于
      Start the new generic I/O channel framework by defining a
      QIOChannel abstract base class. This is designed to feel
      similar to GLib's GIOChannel, but with the addition of
      support for using iovecs, qemu error reporting, file
      descriptor passing, coroutine integration and use of
      the QOM framework for easier sub-classing.
      
      The intention is that anywhere in QEMU that almost
      anywhere that deals with sockets will use this new I/O
      infrastructure, so that it becomes trivial to then layer
      in support for TLS encryption. This will at least include
      the VNC server, char device backend and migration code.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      666a3af9
  27. 10 12月, 2015 1 次提交
  28. 25 11月, 2015 1 次提交
  29. 19 11月, 2015 1 次提交
  30. 12 11月, 2015 2 次提交