1. 20 9月, 2017 3 次提交
  2. 27 7月, 2017 4 次提交
  3. 24 7月, 2017 1 次提交
  4. 17 7月, 2017 1 次提交
  5. 14 7月, 2017 4 次提交
  6. 27 4月, 2017 1 次提交
  7. 27 3月, 2017 3 次提交
    • P
      qemu: block: Add code to fetch block node data by node name · 51c4b744
      Peter Krempa 提交于
      To allow updating stats based on the node name, add a helper function
      that will fetch the required data from 'query-named-block-nodes' and
      return it in hash table for easy lookup.
      51c4b744
    • P
      qemu: block: Add code to detect node names when necessary · 0feebab2
      Peter Krempa 提交于
      Detect the node names when setting block threshold and when reconnecting
      or when they are cleared when a block job finishes. This operation will
      become a no-op once we fully support node names.
      0feebab2
    • P
      qemu: block: Add code to allow detection of auto-allocated node names · dbad8f8a
      Peter Krempa 提交于
      qemu for some time already sets node names automatically for the block
      nodes. This patch adds code that attempts a best-effort detection of the
      node names for the backing chain from the output of
      'query-named-block-nodes'. The only drawback is that the data provided
      by qemu needs to be matched by the filename as seen by qemu and thus
      if two disks share a single backing store file the detection won't work.
      
      This will allow us to use qemu commands such as
      'block-set-write-threshold' which only accepts node names.
      
      In this patch only the detection code is added, it will be used later.
      dbad8f8a