From: Andre Przywara <andre.przywara@arm.com>
To: Fan Du <fan.du@intel.com>
Cc: kvm@vger.kernel.org, penberg@kernel.org,
Will Deacon <will.deacon@arm.com>,
Marc Zyngier <Marc.Zyngier@arm.com>
Subject: Re: [PATCH 1/3] kvm-tool: Introduce downscript option
Date: Mon, 20 Jul 2015 15:45:37 +0100 [thread overview]
Message-ID: <55AD0991.3020508@arm.com> (raw)
In-Reply-To: <1437384527-22987-2-git-send-email-fan.du@intel.com>
Hi,
On 20/07/15 10:28, Fan Du wrote:
> To detach tap device automatically from bridge when exiting,
> just like the reverse of "script" does.
>
> Signed-off-by: Fan Du <fan.du@intel.com>
> ---
> tools/kvm/include/kvm/virtio-net.h | 1 +
> tools/kvm/virtio/net.c | 28 ++++++++++++++++++++++++++++
> 2 files changed, 29 insertions(+)
>
> diff --git a/tools/kvm/include/kvm/virtio-net.h b/tools/kvm/include/kvm/virtio-net.h
> index f435cc3..d136a09 100644
> --- a/tools/kvm/include/kvm/virtio-net.h
> +++ b/tools/kvm/include/kvm/virtio-net.h
> @@ -9,6 +9,7 @@ struct virtio_net_params {
> const char *guest_ip;
> const char *host_ip;
> const char *script;
> + const char *downscript;
> const char *trans;
> const char *tapif;
> char guest_mac[6];
> diff --git a/tools/kvm/virtio/net.c b/tools/kvm/virtio/net.c
> index 25b9496..f3f7200 100644
> --- a/tools/kvm/virtio/net.c
> +++ b/tools/kvm/virtio/net.c
> @@ -696,6 +696,8 @@ static int set_net_param(struct kvm *kvm, struct virtio_net_params *p,
> die("Unknown network mode %s, please use user, tap or none", kvm->cfg.network);
> } else if (strcmp(param, "script") == 0) {
> p->script = strdup(val);
> + } else if (strcmp(param, "downscript") == 0) {
> + p->downscript = strdup(val);
> } else if (strcmp(param, "guest_ip") == 0) {
> p->guest_ip = strdup(val);
> } else if (strcmp(param, "host_ip") == 0) {
> @@ -871,6 +873,32 @@ virtio_dev_init(virtio_net__init);
>
> int virtio_net__exit(struct kvm *kvm)
> {
> + int pid;
> + int status;
> + struct virtio_net_params *params;
> + struct net_dev *ndev;
> + struct list_head *ptr;
> +
> + list_for_each(ptr, &ndevs) {
> + ndev = list_entry(ptr, struct net_dev, list);
> + params = ndev->params;
> + /* Cleanup any tap device which attached to bridge */
> + if (ndev->mode == NET_MODE_TAP ||
Do you mean && here? Otherwise it may try to execute "none".
> + strcmp(params->downscript, "none")) {
> + pid = fork();
> + if (pid == 0) {
> + execl(ndev->params->downscript,
> + params->downscript, ndev->tap_name, NULL);
> + _exit(1);
> + } else {
> + waitpid(pid, &status, 0);
> + if (WIFEXITED(status) && WEXITSTATUS(status) != 0) {
> + pr_warning("Fail to cleanup tap by %s",
> + params->script);
> + }
> + }
> + }
> + }
I think this should be moved into a separate function to avoid code
duplication with the init script execution. Also it improves readability
and avoids too long lines.
Cheers,
Andre.
> return 0;
> }
> virtio_dev_exit(virtio_net__exit);
>
next prev parent reply other threads:[~2015-07-20 14:45 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-20 9:28 [PATCH 0/3] Fixes for kvmtool virtio-net part Fan Du
2015-07-20 9:28 ` [PATCH 1/3] kvm-tool: Introduce downscript option Fan Du
2015-07-20 14:45 ` Andre Przywara [this message]
2015-07-20 9:28 ` [PATCH 2/3] kvm-tool: Pass address of pointer to ioctl for tap Fan Du
2015-07-20 9:28 ` [PATCH 3/3] kvm-tool: Restrict queue number to 1 when vhost on Fan Du
2015-07-20 14:42 ` [PATCH 0/3] Fixes for kvmtool virtio-net part Andre Przywara
2015-07-21 3:09 ` Du, Fan
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=55AD0991.3020508@arm.com \
--to=andre.przywara@arm.com \
--cc=Marc.Zyngier@arm.com \
--cc=fan.du@intel.com \
--cc=kvm@vger.kernel.org \
--cc=penberg@kernel.org \
--cc=will.deacon@arm.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.