[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[libvirt] Re: [PATCH 3/3] qemu: fix block stats for virtio and scsi
- From: "Daniel P. Berrange" <berrange redhat com>
- To: Guido Günther <agx sigxcpu org>
- Cc: libvir-list redhat com
- Subject: [libvirt] Re: [PATCH 3/3] qemu: fix block stats for virtio and scsi
- Date: Fri, 10 Oct 2008 18:05:37 +0100
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 :|
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]