[libvirt] Re: [PATCH 3/3] qemu: fix block stats for virtio and scsi

Daniel P. Berrange berrange at redhat.com
Fri Oct 10 17:05:37 UTC 2008


On Fri, Oct 10, 2008 at 05:28:54PM +0200, Guido G?nther wrote:
> Hi,
> use qemudDiskDeviceName to determine the block device name (as suggested
> by Cole).
>  -- Guido

> +    disk = vm->def->disks;
> +    while (disk) {
> +        if (STREQ(disk->dst, path))
> +            break;
> +        disk = disk->next;
> +    }

Sorry to mess up your patch, but I just committed the code to turn
all linked lists into arrays. So you'll need to tweak this to do
 
  for (i = 0 ; i < vm->def->ndisks ; i++) 
     if (STREQ(vm->def->disks[i]->dst))
         break;


Daniel
-- 
|: Red Hat, Engineering, London   -o-   http://people.redhat.com/berrange/ :|
|: http://libvirt.org  -o-  http://virt-manager.org  -o-  http://ovirt.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: GnuPG: 7D3B9505  -o-  F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 :|




More information about the libvir-list mailing list