* [Qemu-devel] [PATCH] fix pci net hot-remove
@ 2009-02-20 0:21 Marcelo Tosatti
2009-02-26 16:40 ` Anthony Liguori
0 siblings, 1 reply; 2+ messages in thread
From: Marcelo Tosatti @ 2009-02-20 0:21 UTC (permalink / raw)
To: qemu-devel; +Cc: Anthony Liguori
Missing brackets, doh.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Index: hw/device-hotplug.c
===================================================================
--- hw/device-hotplug.c (revision 6618)
+++ hw/device-hotplug.c (working copy)
@@ -51,7 +51,7 @@
int i;
NICInfo *nic;
- for (i = 0; i < MAX_NICS; i++)
+ for (i = 0; i < MAX_NICS; i++) {
nic = &nd_table[i];
if (nic->used) {
if (nic->private && match_fn(nic->private, arg)) {
@@ -64,6 +64,7 @@
net_client_uninit(nic);
}
}
+ }
}
void destroy_bdrvs(dev_match_fn *match_fn, void *arg)
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] fix pci net hot-remove
2009-02-20 0:21 [Qemu-devel] [PATCH] fix pci net hot-remove Marcelo Tosatti
@ 2009-02-26 16:40 ` Anthony Liguori
0 siblings, 0 replies; 2+ messages in thread
From: Anthony Liguori @ 2009-02-26 16:40 UTC (permalink / raw)
To: qemu-devel
Marcelo Tosatti wrote:
> Missing brackets, doh.
>
Applied. Thanks.
Regards,
Anthony Liguori
> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
>
> Index: hw/device-hotplug.c
> ===================================================================
> --- hw/device-hotplug.c (revision 6618)
> +++ hw/device-hotplug.c (working copy)
> @@ -51,7 +51,7 @@
> int i;
> NICInfo *nic;
>
> - for (i = 0; i < MAX_NICS; i++)
> + for (i = 0; i < MAX_NICS; i++) {
> nic = &nd_table[i];
> if (nic->used) {
> if (nic->private && match_fn(nic->private, arg)) {
> @@ -64,6 +64,7 @@
> net_client_uninit(nic);
> }
> }
> + }
> }
>
> void destroy_bdrvs(dev_match_fn *match_fn, void *arg)
>
>
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-02-26 16:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-20 0:21 [Qemu-devel] [PATCH] fix pci net hot-remove Marcelo Tosatti
2009-02-26 16:40 ` Anthony Liguori
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).