From: Markus Armbruster <armbru@redhat.com>
To: Andrew Melnichenko <andrew@daynix.com>
Cc: Yan Vugenfirer <yan@daynix.com>,
Yuri Benditovich <yuri.benditovich@daynix.com>,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
qemu-devel@nongnu.org
Subject: Re: [PATCH] hmp: Changed hmp_netdev_add() using qmp_marshal_netdev_add()
Date: Mon, 23 Nov 2020 10:25:41 +0100 [thread overview]
Message-ID: <87lfesv2zu.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <CABcq3pGDAO7sB6jobcsiE8_7md1yZ7wGkkyxZefjXGc7-d6obw@mail.gmail.com> (Andrew Melnichenko's message of "Sun, 22 Nov 2020 12:17:50 +0200")
Andrew Melnichenko <andrew@daynix.com> writes:
> --000000000000f73b2205b4aef0c5
> Content-Type: text/plain; charset="UTF-8"
>
> Hi, the bug can be reproduced like that:
>
>> QEMU 5.1.50 monitor - type 'help' for more information
>> (qemu) netdev_add
>> type=tap,id=net0,script=/home/and/SRCS/qemu/ifup.sh,downscript=no
>> (qemu) info network
>> hub 0
>> \ hub0port1: __org.qemu.net1: index=0,type=user,net=10.0.2.0,restrict=off
>> \ hub0port0: e1000e.0:
>> index=0,type=nic,model=e1000e,macaddr=52:54:00:12:34:56
>> dnet0: index=0,type=nic,model=virtio-net-pci,macaddr=52:54:00:12:34:57
>> net0:
>> index=0,type=tap,ifname=tap0,script=/home/and/SRCS/qemu/ifup.sh,downscript=no
>> (qemu) netdev_del net0
>> (qemu) info network
>> hub 0
>> \ hub0port1: __org.qemu.net1: index=0,type=user,net=10.0.2.0,restrict=off
>> \ hub0port0: e1000e.0:
>> index=0,type=nic,model=e1000e,macaddr=52:54:00:12:34:56
>> dnet0: index=0,type=nic,model=virtio-net-pci,macaddr=52:54:00:12:34:57
>> (qemu) netdev_add
>> type=tap,id=net0,script=/home/and/SRCS/qemu/ifup.sh,downscript=no
>> Try "help netdev_add" for more information
>> (qemu) info network
>> hub 0
>> \ hub0port1: __org.qemu.net1: index=0,type=user,net=10.0.2.0,restrict=off
>> \ hub0port0: e1000e.0:
>> index=0,type=nic,model=e1000e,macaddr=52:54:00:12:34:56
>> dnet0: index=0,type=nic,model=virtio-net-pci,macaddr=52:54:00:12:34:57
>> (qemu)
>>
>>
> Its still actual bug - I've checked it with the
> master(2c6605389c1f76973d92b69b85d40d94b8f1092c).
I can see this with an even simpler reproducer:
$ qemu-system-x86_64 -S -display none -nodefaults -monitor stdio
QEMU 5.1.92 monitor - type 'help' for more information
(qemu) netdev_add user,id=net0
(qemu) info network
net0: index=0,type=user,net=10.0.2.0,restrict=off
(qemu) netdev_del net0
(qemu) info network
(qemu) netdev_add user,id=net0
upstream-qemu: Duplicate ID 'net0' for netdev
Try "help netdev_add" for more information
The appended patch fixes it for me. It relies on nothing using the
"netdev" QemuOpts anymore. Eric, what do you think?
diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c
index a6a6684df1..8bc6b7bcc6 100644
--- a/monitor/hmp-cmds.c
+++ b/monitor/hmp-cmds.c
@@ -1638,9 +1638,7 @@ void hmp_netdev_add(Monitor *mon, const QDict *qdict)
}
netdev_add(opts, &err);
- if (err) {
- qemu_opts_del(opts);
- }
+ qemu_opts_del(opts);
out:
hmp_handle_error(mon, err);
next prev parent reply other threads:[~2020-11-23 9:27 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-16 3:55 [PATCH] hmp: Changed hmp_netdev_add() using qmp_marshal_netdev_add() andrew
2020-11-20 11:05 ` Andrew Melnichenko
2020-11-20 12:58 ` Markus Armbruster
2020-11-21 15:24 ` Yuri Benditovich
2020-11-21 15:31 ` Yuri Benditovich
2020-11-22 10:17 ` Andrew Melnichenko
2020-11-22 16:16 ` Yuri Benditovich
2020-11-23 9:25 ` Markus Armbruster [this message]
2020-11-23 14:32 ` Eric Blake
2020-11-23 15:35 ` Yuri Benditovich
2020-11-23 21:57 ` Yuri Benditovich
2020-11-24 8:55 ` Markus Armbruster
2020-11-24 10:21 ` Markus Armbruster
2020-11-24 11:36 ` Yuri Benditovich
2020-11-24 13:22 ` Markus Armbruster
2020-11-24 13:36 ` Markus Armbruster
2020-11-24 14:03 ` Yuri Benditovich
2020-11-24 15:45 ` Markus Armbruster
2020-11-25 8:54 ` Yuri Benditovich
2020-11-25 10:27 ` Markus Armbruster
2020-11-24 14:49 ` Eric Blake
2020-11-24 15:32 ` Markus Armbruster
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=87lfesv2zu.fsf@dusky.pond.sub.org \
--to=armbru@redhat.com \
--cc=andrew@daynix.com \
--cc=dgilbert@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=yan@daynix.com \
--cc=yuri.benditovich@daynix.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.