1. 17 1月, 2020 2 次提交
  2. 16 1月, 2020 3 次提交
  3. 15 1月, 2020 2 次提交
  4. 14 1月, 2020 2 次提交
  5. 13 1月, 2020 4 次提交
  6. 10 1月, 2020 4 次提交
  7. 09 1月, 2020 1 次提交
  8. 08 1月, 2020 1 次提交
  9. 07 1月, 2020 2 次提交
  10. 06 1月, 2020 2 次提交
    • W
      Introduce command 'virsh domstats --memory' for reporting memory BW · 65a63d88
      Wang Huaqiang 提交于
      Introduce an option '--memory' for showing memory related
      information. The memory bandwidth infomatio is listed as:
      
      Domain: 'libvirt-vm'
       memory.bandwidth.monitor.count=4
       memory.bandwidth.monitor.0.name=vcpus_0-4
       memory.bandwidth.monitor.0.vcpus=0-4
       memory.bandwidth.monitor.0.node.count=2
       memory.bandwidth.monitor.0.node.0.id=0
       memory.bandwidth.monitor.0.node.0.bytes.total=10208067584
       memory.bandwidth.monitor.0.node.0.bytes.local=4807114752
       memory.bandwidth.monitor.0.node.1.id=1
       memory.bandwidth.monitor.0.node.1.bytes.total=8693735424
       memory.bandwidth.monitor.0.node.1.bytes.local=5850161152
       memory.bandwidth.monitor.1.name=vcpus_7
       memory.bandwidth.monitor.1.vcpus=7
       memory.bandwidth.monitor.1.node.count=2
       memory.bandwidth.monitor.1.node.0.id=0
       memory.bandwidth.monitor.1.node.0.bytes.total=853811200
       memory.bandwidth.monitor.1.node.0.bytes.local=290701312
       memory.bandwidth.monitor.1.node.1.id=1
       memory.bandwidth.monitor.1.node.1.bytes.total=406044672
       memory.bandwidth.monitor.1.node.1.bytes.local=229425152
      Signed-off-by: NWang Huaqiang <huaqiang.wang@intel.com>
      65a63d88
    • P
      schemas: backup: Remove pointless <choice> for 'name' of backup disk · 5b53d9dd
      Peter Krempa 提交于
      One of the first versions thought of using disk path as the second
      option but this was dropped as being a legacy interface. Remove the
      leftover pointless <choice> wrapper for the disk name as there's just
      one option now.
      Signed-off-by: NPeter Krempa <pkrempa@redhat.com>
      Reviewed-by: NDaniel P. Berrangé <berrange@redhat.com>
      5b53d9dd
  11. 03 1月, 2020 1 次提交
  12. 25 12月, 2019 1 次提交
  13. 24 12月, 2019 1 次提交
  14. 23 12月, 2019 1 次提交
  15. 21 12月, 2019 2 次提交
  16. 20 12月, 2019 3 次提交
  17. 19 12月, 2019 4 次提交
  18. 18 12月, 2019 1 次提交
  19. 17 12月, 2019 1 次提交
    • M
      schemas: Introduce disk type NVMe · e1b02289
      Michal Privoznik 提交于
      There is this class of PCI devices that act like disks: NVMe.
      Therefore, they are both PCI devices and disks. While we already
      have <hostdev/> (and can assign a NVMe device to a domain
      successfully) we don't have disk representation. There are three
      problems with PCI assignment in case of a NVMe device:
      
      1) domains with <hostdev/> can't be migrated
      
      2) NVMe device is assigned whole, there's no way to assign only a
         namespace
      
      3) Because hypervisors see <hostdev/> they don't put block layer
         on top of it - users don't get all the fancy features like
         snapshots
      
      NVMe namespaces are way of splitting one continuous NVDIMM memory
      into smaller ones, effectively creating smaller NVMe-s (which can
      then be partitioned, LVMed, etc.)
      
      Because of all of this the following XML was chosen to model a
      NVMe device:
      
        <disk type='nvme' device='disk'>
          <driver name='qemu' type='raw'/>
          <source type='pci' managed='yes' namespace='1'>
            <address domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
          </source>
          <target dev='vda' bus='virtio'/>
        </disk>
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      Reviewed-by: NCole Robinson <crobinso@redhat.com>
      e1b02289
  20. 16 12月, 2019 1 次提交
  21. 14 12月, 2019 1 次提交