1. 20 9月, 2018 1 次提交
  2. 17 9月, 2018 1 次提交
  3. 12 9月, 2018 3 次提交
  4. 24 8月, 2018 2 次提交
  5. 09 8月, 2018 1 次提交
  6. 24 7月, 2018 1 次提交
  7. 06 7月, 2018 1 次提交
  8. 27 6月, 2018 7 次提交
  9. 07 6月, 2018 1 次提交
  10. 16 5月, 2018 12 次提交
  11. 07 5月, 2018 1 次提交
  12. 04 5月, 2018 1 次提交
  13. 11 4月, 2018 1 次提交
  14. 01 2月, 2018 2 次提交
  15. 30 1月, 2018 1 次提交
    • P
      storage: util: Properly ignore errors when backing volume is inaccessible · b2c5f28a
      Peter Krempa 提交于
      Commit 000e9504 tried to fix improper bracketing when refreshing disk
      volume stats for a backing volume. Unfortunately the condition is still
      wrong as in cases as the backing store being inaccessible
      storageBackendUpdateVolTargetInfo returns -2 if instructed to ignore
      errors. The condition does not take this into account.
      
      Dumping XML of a volume which has inacessible backing store would then
      result into:
      
       # virsh vol-dumpxml http.img --pool default
       error: An error occurred, but the cause is unknown
      
      Properly ignore -2 for backing volumes.
      
      Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1540022
      b2c5f28a
  16. 03 1月, 2018 1 次提交
  17. 27 10月, 2017 3 次提交
    • J
      storage: Introduce virStorageBackendCreateVolUsingQemuImg · 29c5c7d2
      John Ferlan 提交于
      Create a shim that will allow other backends to make use of qemu-img
      functionality to create or possibly modify the volume.
      29c5c7d2
    • J
      storage: Properly resize a local volume using LUKS · becb383a
      John Ferlan 提交于
      https://bugzilla.redhat.com/show_bug.cgi?id=1490279
      
      Turns out the virStorageBackendVolResizeLocal did not differentiate
      whether the target volume was a LUKS volume or not and just blindly
      did the ftruncate() on the target volume.
      
      Follow the volume creation logic (in general) and create a qemu-img
      resize command to resize the target volume for LUKS ensuring that
      the --object secret is provided as well as the '--image-opts' used
      by the qemu-img resize logic to describe the path and secret ensuring
      that it's using the luks driver on the volume of course.
      becb383a
    • J
      storage: Alter storageBackendCreateQemuImgSecretObject args · 03984ae5
      John Ferlan 提交于
      Since all that was really needed was a couple of fields and building
      the object can be more generic, let's alter the args a bit. This will
      be useful shortly for adding the secret object for a volume resize
      operation on a luks volume that will need a secret object.
      03984ae5