1. 12 10月, 2013 3 次提交
    • M
      Mostly revert "qemu-help: Sort devices by logical functionality" · 1fc224b4
      Markus Armbruster 提交于
      This reverts most of commit 3d1237fb.
      
      The commit claims to sort the output of "-device help" "by
      functionality rather than alphabetical".  Issues:
      
      * The output was unsorted before, not alphabetically sorted.
        Misleading, but harmless enough.
      
      * The commit doesn't just sort the output of "-device help" as it
        claims, it adds categories to each line of "-device help", and it
        prints devices once per category.  In particular, devices without a
        category aren't shown anymore.  Maybe such devices should not exist,
        but they do.  Regression.
      
      * Categories are also added to the output of "info qdm".  Silent
        change, not nice.  Output remains unsorted, unlike "-device help".
      
      I'm going to reimplement the feature we actually want, without the
      warts.  Reverting the flawed commit first should make it easier to
      review.  However, I can't revert it completely, since DeviceClass
      member categories has been put to use.  So leave that part in.
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Reviewed-by: NMarcel Apfelbaum <marcel.a@redhat.com>
      Message-id: 1381410021-1538-2-git-send-email-armbru@redhat.com
      Signed-off-by: NAnthony Liguori <aliguori@amazon.com>
      1fc224b4
    • S
      Use qemu-project.org domain name · 85938981
      Stefan Hajnoczi 提交于
      qemu.org is held by a third-party and no core community contributor has
      access to the DNS configuration.  This leaves the website exposed to
      outages due to DNS issues or IP address changes.  For example, if the
      web server IP address needs to change we cannot guarantee qemu.org will
      point to it!
      
      The newer qemu-project.org domain name is owned by Anthony Liguori
      <anthony@codemonkey.ws>.  You can confirm this by querying the whois
      information.  Also note that the #qemu IRC channel topic already
      references qemu-project.org.
      
      Short of having a dedicated legal entity to hold the domain name on
      behalf of the community, qemu-project.org seems like the safest bet.
      
      Let's replace references to qemu.org with qemu-project.org.
      
      Note that git-submodule(1) does not detect URL changes.  The following
      commands clear out and re-initialize all submodules to ensure you are
      using the latest URLs:
      
        $ git submodule deinit . # you'll be warned if you have local changes
        $ rm -rf .git/modules    # also clear cached .git/ directories
        $ git submodule update --init
      Reviewed-by: NMarkus Armbruster <armbru@redhat.com>
      Signed-off-by: NStefan Hajnoczi <stefanha@redhat.com>
      Message-id: 1381495958-8306-1-git-send-email-stefanha@redhat.com
      Signed-off-by: NAnthony Liguori <aliguori@amazon.com>
      85938981
    • A
      Merge remote-tracking branch 'kwolf/for-anthony' into staging · 33c6cae4
      Anthony Liguori 提交于
      # By Max Reitz (30) and others
      # Via Kevin Wolf
      * kwolf/for-anthony: (61 commits)
        qemu-iotests: Add test for inactive L2 overlap
        qemu-io: Let "open" pass options to block driver
        vmdk: Fix vmdk_parse_extents
        blockdev: blockdev_init() error conversion
        blockdev: Don't disable COR automatically with blockdev-add
        blockdev: Remove 'media' parameter from blockdev_init()
        qemu-iotests: Check autodel behaviour for device_del
        blockdev: Remove IF_* check for read-only blockdev_init
        blockdev: Move virtio-blk device creation to drive_init
        blockdev: Move bus/unit/index processing to drive_init
        blockdev: Move parsing of 'boot' option to drive_init
        blockdev: Moving parsing of geometry options to drive_init
        blockdev: Move parsing of 'if' option to drive_init
        blockdev: Move parsing of 'media' option to drive_init
        blockdev: Pass QDict to blockdev_init()
        blockdev: Separate ID generation from DriveInfo creation
        blockdev: 'blockdev-add' QMP command
        blockdev: Introduce DriveInfo.enable_auto_del
        qapi-types/visit.py: Inheritance for structs
        qapi-types/visit.py: Pass whole expr dict for structs
        ...
      
      Message-id: 1381503951-27985-1-git-send-email-kwolf@redhat.com
      Signed-off-by: NAnthony Liguori <aliguori@amazon.com>
      33c6cae4
  2. 11 10月, 2013 37 次提交