From: Jason Wang <jasowang@redhat.com>
To: Eric Blake <eblake@redhat.com>,
qemu-devel@nongnu.org, peter.maydell@linaro.org
Cc: liq3ea@gmail.com, ppandit@redhat.com, liq3ea@163.com,
pbonzini@redhat.com, mst@redhat.com
Subject: Re: [Qemu-devel] [PATCH for 3.1 3/4] virtio-net-test: accept variable length argument in pci_test_start()
Date: Mon, 3 Dec 2018 18:08:28 +0800 [thread overview]
Message-ID: <6e36156d-a392-0d18-4cc6-df233772fa40@redhat.com> (raw)
In-Reply-To: <e6049f2d-36b3-04b7-18ea-e0eebae5777c@redhat.com>
On 2018/11/30 下午11:02, Eric Blake wrote:
> On 11/28/18 9:12 PM, Jason Wang wrote:
>> This allows flexibility to be reused for all kinds of command line
>> used by other tests.
>>
>> Signed-off-by: Jason Wang <jasowang@redhat.com>
>> ---
>> tests/virtio-net-test.c | 17 +++++++++++------
>> 1 file changed, 11 insertions(+), 6 deletions(-)
>>
>> diff --git a/tests/virtio-net-test.c b/tests/virtio-net-test.c
>> index 231e7c767e..33d26ab079 100644
>> --- a/tests/virtio-net-test.c
>> +++ b/tests/virtio-net-test.c
>> @@ -51,17 +51,20 @@ static QVirtioPCIDevice
>> *virtio_net_pci_init(QPCIBus *bus, int slot)
>> return dev;
>> }
>> -static QOSState *pci_test_start(int socket)
>> +static QOSState *pci_test_start(const char *cmd, ...)
>
> This should probably be tagged with GCC_FMT_ATTR(1, 2).
Ok.
>
>
>> @@ -218,11 +221,13 @@ static void pci_basic(gconstpointer data)
>> QVirtQueue *tvq,
>> int socket) = data;
>> int sv[2], ret;
>> + const char *cmd = "-netdev socket,fd=%d,id=hs0 -device "
>> + "virtio-net-pci,netdev=hs0";
>> ret = socketpair(PF_UNIX, SOCK_STREAM, 0, sv);
>> g_assert_cmpint(ret, !=, -1);
>> - qs = pci_test_start(sv[1]);
>> + qs = pci_test_start(cmd, sv[1]);
>
> Do you really need an intermediate 'cmd' variable, or can you just
> inline the string constant command at the point of the call?
> -Wformat=non-literal may warn if you don't inline.
>
Fixed and post V4.
Thanks
next prev parent reply other threads:[~2018-12-03 10:08 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-29 3:12 [Qemu-devel] [PATCH for 3.1 0/4] Fix possible OOB during queuing packets Jason Wang
2018-11-29 3:12 ` [Qemu-devel] [PATCH for 3.1 1/4] net: drop too large packet early Jason Wang
2018-11-29 3:43 ` Li Qiang
2018-11-29 3:12 ` [Qemu-devel] [PATCH for 3.1 2/4] virtio-net-test: remove unused macro Jason Wang
2018-11-29 6:17 ` Thomas Huth
2018-11-29 3:12 ` [Qemu-devel] [PATCH for 3.1 3/4] virtio-net-test: accept variable length argument in pci_test_start() Jason Wang
2018-11-29 6:16 ` Thomas Huth
2018-11-30 15:02 ` Eric Blake
2018-12-03 10:08 ` Jason Wang [this message]
2018-11-29 3:12 ` [Qemu-devel] [PATCH for 3.1 4/4] virtio-net-test: add large tx buffer test Jason Wang
2018-11-29 6:21 ` Thomas Huth
2018-11-29 12:15 ` Jason Wang
2018-11-30 3:48 ` [Qemu-devel] [PATCH for 3.1 0/4] Fix possible OOB during queuing packets no-reply
2018-11-30 3:49 ` no-reply
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=6e36156d-a392-0d18-4cc6-df233772fa40@redhat.com \
--to=jasowang@redhat.com \
--cc=eblake@redhat.com \
--cc=liq3ea@163.com \
--cc=liq3ea@gmail.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=ppandit@redhat.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).