From: "Michael S. Tsirkin" <mst@redhat.com>
To: Zhi Yong Wu <zwu.kernel@gmail.com>
Cc: netdev@vger.kernel.org, QEMU Developers <qemu-devel@nongnu.org>,
Rusty Russell <rusty@rustcorp.com.au>,
Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>,
linux-kernel mlist <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 4/4] net, virtio_net: replace the magic value
Date: Mon, 18 Nov 2013 12:15:17 +0200 [thread overview]
Message-ID: <20131118101517.GA3559@redhat.com> (raw)
In-Reply-To: <CAEH94Ljbu-gJ3SCHYErNEPucV=rR9PHz5COrOp3B-iw+db=LDQ@mail.gmail.com>
On Mon, Nov 18, 2013 at 06:07:45PM +0800, Zhi Yong Wu wrote:
> On Mon, Nov 18, 2013 at 5:50 PM, Michael S. Tsirkin <mst@redhat.com> wrote:
> > On Mon, Nov 18, 2013 at 04:46:20PM +0800, Zhi Yong Wu wrote:
> >> From: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
> >>
> >> It is more appropriate to use # of queue pairs currently used by
> >> the driver instead of a magic value.
> >>
> >> Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
> >
> > I don't mind, but driver should be submitted separately
> > from qemu patches. As it is only patch 4/4 made it to netdev.
> ok, i will sent v2. By the way, can you help take a look at the
> following patches?
Will do.
> Maybe i can send their v2 together.
Please don't, these seem to be completely unrelated.
> [PATCH 1/3] vhost: remove the dead branch
> [PATCH 2/3] vhost: adjust vhost_dev_init() to be void
> [PATCH 3/3] vhost: fix the wrong log descriptions
>
>
> >
> >> ---
> >> drivers/net/virtio_net.c | 4 ++--
> >> 1 files changed, 2 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
> >> index cdc7c90..e0cb2d1 100644
> >> --- a/drivers/net/virtio_net.c
> >> +++ b/drivers/net/virtio_net.c
> >> @@ -1619,8 +1619,8 @@ static int virtnet_probe(struct virtio_device *vdev)
> >> if (err)
> >> goto free_stats;
> >>
> >> - netif_set_real_num_tx_queues(dev, 1);
> >> - netif_set_real_num_rx_queues(dev, 1);
> >> + netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
> >> + netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
> >>
> >> err = register_netdev(dev);
> >> if (err) {
> >> --
> >> 1.7.6.5
> >>
>
>
>
> --
> Regards,
>
> Zhi Yong Wu
WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Zhi Yong Wu <zwu.kernel@gmail.com>
Cc: netdev@vger.kernel.org, Rusty Russell <rusty@rustcorp.com.au>,
Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>,
QEMU Developers <qemu-devel@nongnu.org>,
linux-kernel mlist <linux-kernel@vger.kernel.org>
Subject: Re: [Qemu-devel] [PATCH 4/4] net, virtio_net: replace the magic value
Date: Mon, 18 Nov 2013 12:15:17 +0200 [thread overview]
Message-ID: <20131118101517.GA3559@redhat.com> (raw)
In-Reply-To: <CAEH94Ljbu-gJ3SCHYErNEPucV=rR9PHz5COrOp3B-iw+db=LDQ@mail.gmail.com>
On Mon, Nov 18, 2013 at 06:07:45PM +0800, Zhi Yong Wu wrote:
> On Mon, Nov 18, 2013 at 5:50 PM, Michael S. Tsirkin <mst@redhat.com> wrote:
> > On Mon, Nov 18, 2013 at 04:46:20PM +0800, Zhi Yong Wu wrote:
> >> From: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
> >>
> >> It is more appropriate to use # of queue pairs currently used by
> >> the driver instead of a magic value.
> >>
> >> Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
> >
> > I don't mind, but driver should be submitted separately
> > from qemu patches. As it is only patch 4/4 made it to netdev.
> ok, i will sent v2. By the way, can you help take a look at the
> following patches?
Will do.
> Maybe i can send their v2 together.
Please don't, these seem to be completely unrelated.
> [PATCH 1/3] vhost: remove the dead branch
> [PATCH 2/3] vhost: adjust vhost_dev_init() to be void
> [PATCH 3/3] vhost: fix the wrong log descriptions
>
>
> >
> >> ---
> >> drivers/net/virtio_net.c | 4 ++--
> >> 1 files changed, 2 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
> >> index cdc7c90..e0cb2d1 100644
> >> --- a/drivers/net/virtio_net.c
> >> +++ b/drivers/net/virtio_net.c
> >> @@ -1619,8 +1619,8 @@ static int virtnet_probe(struct virtio_device *vdev)
> >> if (err)
> >> goto free_stats;
> >>
> >> - netif_set_real_num_tx_queues(dev, 1);
> >> - netif_set_real_num_rx_queues(dev, 1);
> >> + netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
> >> + netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
> >>
> >> err = register_netdev(dev);
> >> if (err) {
> >> --
> >> 1.7.6.5
> >>
>
>
>
> --
> Regards,
>
> Zhi Yong Wu
next prev parent reply other threads:[~2013-11-18 10:12 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-18 8:46 [PATCH 4/4] net, virtio_net: replace the magic value Zhi Yong Wu
2013-11-18 8:46 ` [Qemu-devel] " Zhi Yong Wu
2013-11-18 9:50 ` Michael S. Tsirkin
2013-11-18 9:50 ` [Qemu-devel] " Michael S. Tsirkin
2013-11-18 10:07 ` Zhi Yong Wu
2013-11-18 10:07 ` [Qemu-devel] " Zhi Yong Wu
2013-11-18 10:07 ` Zhi Yong Wu
2013-11-18 10:15 ` Michael S. Tsirkin [this message]
2013-11-18 10:15 ` [Qemu-devel] " Michael S. Tsirkin
2013-11-18 12:26 ` Zhi Yong Wu
2013-11-18 12:26 ` [Qemu-devel] " Zhi Yong Wu
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=20131118101517.GA3559@redhat.com \
--to=mst@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=qemu-devel@nongnu.org \
--cc=rusty@rustcorp.com.au \
--cc=wuzhy@linux.vnet.ibm.com \
--cc=zwu.kernel@gmail.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.