qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@us.ibm.com>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] fix pci net hot-remove
Date: Thu, 26 Feb 2009 10:40:22 -0600	[thread overview]
Message-ID: <49A6C5F6.8090401@us.ibm.com> (raw)
In-Reply-To: <20090220002144.GA1489@amt.cnet>

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)
>
>
>
>   

      reply	other threads:[~2009-02-26 16:40 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-02-20  0:21 [Qemu-devel] [PATCH] fix pci net hot-remove Marcelo Tosatti
2009-02-26 16:40 ` Anthony Liguori [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=49A6C5F6.8090401@us.ibm.com \
    --to=aliguori@us.ibm.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).