From: Igor Mammedov <imammedo@redhat.com>
To: gaowanlong@cn.fujitsu.com
Cc: Jason Wang <jasowang@redhat.com>,
linux-kernel@vger.kernel.org,
Rusty Russell <rusty@rustcorp.com.au>,
"Michael S. Tsirkin" <mst@redhat.com>,
virtualization@lists.linux-foundation.org,
netdev@vger.kernel.org
Subject: Re: [RFC PATCH] virtio-net: reset virtqueue affinity when doing cpu hotplug
Date: Mon, 7 Apr 2014 08:06:20 +0200 [thread overview]
Message-ID: <20140407080620.38f8bcf2@nial.usersys.redhat.com> (raw)
In-Reply-To: <50DBC3E2.4090804@cn.fujitsu.com>
On Thu, 27 Dec 2012 11:43:30 +0800
Wanlong Gao <gaowanlong@cn.fujitsu.com> wrote:
> On 12/27/2012 11:28 AM, Jason Wang wrote:
> > On 12/26/2012 06:19 PM, Wanlong Gao wrote:
> >> On 12/26/2012 06:06 PM, Jason Wang wrote:
> >>> On 12/26/2012 03:06 PM, Wanlong Gao wrote:
> >>>> Add a cpu notifier to virtio-net, so that we can reset the
> >>>> virtqueue affinity if the cpu hotplug happens. It improve
> >>>> the performance through enabling or disabling the virtqueue
> >>>> affinity after doing cpu hotplug.
> >>> Hi Wanlong:
> >>>
> >>> Thanks for looking at this.
> >>>> Cc: Rusty Russell <rusty@rustcorp.com.au>
> >>>> Cc: "Michael S. Tsirkin" <mst@redhat.com>
> >>>> Cc: Jason Wang <jasowang@redhat.com>
> >>>> Cc: virtualization@lists.linux-foundation.org
> >>>> Cc: netdev@vger.kernel.org
> >>>> Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
> >>>> ---
> >>>> drivers/net/virtio_net.c | 39 ++++++++++++++++++++++++++++++++++++++-
> >>>> 1 file changed, 38 insertions(+), 1 deletion(-)
> >>>>
> >>>> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
> >>>> index a6fcf15..9710cf4 100644
> >>>> --- a/drivers/net/virtio_net.c
> >>>> +++ b/drivers/net/virtio_net.c
> >>>> @@ -26,6 +26,7 @@
> >>>> #include <linux/scatterlist.h>
> >>>> #include <linux/if_vlan.h>
> >>>> #include <linux/slab.h>
> >>>> +#include <linux/cpu.h>
> >>>>
> >>>> static int napi_weight = 128;
> >>>> module_param(napi_weight, int, 0444);
> >>>> @@ -34,6 +35,8 @@ static bool csum = true, gso = true;
> >>>> module_param(csum, bool, 0444);
> >>>> module_param(gso, bool, 0444);
> >>>>
> >>>> +static bool cpu_hotplug = false;
> >>>> +
> >>>> /* FIXME: MTU in config. */
> >>>> #define MAX_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
> >>>> #define GOOD_COPY_LEN 128
> >>>> @@ -1041,6 +1044,26 @@ static void virtnet_set_affinity(struct virtnet_info *vi, bool set)
> >>>> vi->affinity_hint_set = false;
> >>>> }
> >>>>
> >>>> +static int virtnet_cpu_callback(struct notifier_block *nfb,
> >>>> + unsigned long action, void *hcpu)
> >>>> +{
> >>>> + switch(action) {
> >>>> + case CPU_ONLINE:
> >>>> + case CPU_ONLINE_FROZEN:
> >>>> + case CPU_DEAD:
> >>>> + case CPU_DEAD_FROZEN:
> >>>> + cpu_hotplug = true;
> >>>> + break;
> >>>> + default:
> >>>> + break;
> >>>> + }
> >>>> + return NOTIFY_OK;
> >>>> +}
> >>>> +
> >>>> +static struct notifier_block virtnet_cpu_notifier = {
> >>>> + .notifier_call = virtnet_cpu_callback,
> >>>> +};
> >>>> +
> >>>> static void virtnet_get_ringparam(struct net_device *dev,
> >>>> struct ethtool_ringparam *ring)
> >>>> {
> >>>> @@ -1131,7 +1154,14 @@ static int virtnet_change_mtu(struct net_device *dev, int new_mtu)
> >>>> */
> >>>> static u16 virtnet_select_queue(struct net_device *dev, struct sk_buff *skb)
> >>>> {
> >>>> - int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
> >>>> + int txq;
> >>>> +
> >>>> + if (unlikely(cpu_hotplug == true)) {
> >>>> + virtnet_set_affinity(netdev_priv(dev), true);
> >>>> + cpu_hotplug = false;
> >>>> + }
> >>>> +
> >>> Why don't you just do this in callback?
> >> Callback can just give us a "hcpu", can't get the virtnet_info from callback. Am I missing something?
> >
> > Well, I think you can just embed the notifier block into virtnet_info,
> > then use something like container_of in the callback to make the
> > notifier per device. This also solve the concern of Eric.
>
> Yeah, thank you very much for your suggestion. I'll try it.
>
> >>> btw. Does qemu/kvm support cpu-hotplug now?
> >> From http://www.linux-kvm.org/page/CPUHotPlug, I saw that qemu-kvm can support hotplug
> >> but failed to merge to qemu.git, right?
> >
> > Not sure, I just try latest qemu, it even does not have a cpu_set command.
>
> Adding Igor to CC,
>
> As I know, hotplug support is cleaned from qemu, and Igor want to rework it but not been completed?
> I'm not sure about that, Igor, could you send out your tech-preview-patches?
CPU hot-add is supported by upstream now, hot-remove is not supported yet,
besides of qemu work it would require quite a work on kvm side as well.
>
> Thanks,
> Wanlong Gao
>
> >
> > Thanks
> >>
> >> Thanks,
> >> Wanlong Gao
> >>
> >
> >
>
next prev parent reply other threads:[~2014-04-07 6:06 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-26 7:06 Wanlong Gao
2012-12-26 10:06 ` Jason Wang
2012-12-26 10:19 ` Wanlong Gao
2012-12-27 3:28 ` Jason Wang
2012-12-27 3:43 ` Wanlong Gao
2014-04-07 6:06 ` Igor Mammedov [this message]
2012-12-26 10:46 ` Michael S. Tsirkin
2012-12-27 3:34 ` Jason Wang
2012-12-27 11:51 ` Michael S. Tsirkin
2012-12-26 15:51 ` Eric Dumazet
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=20140407080620.38f8bcf2@nial.usersys.redhat.com \
--to=imammedo@redhat.com \
--cc=gaowanlong@cn.fujitsu.com \
--cc=jasowang@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=rusty@rustcorp.com.au \
--cc=virtualization@lists.linux-foundation.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
Powered by JetHome