[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <BY2PR0301MB165407BC397C346F69A796B5A07C0@BY2PR0301MB1654.namprd03.prod.outlook.com>
Date: Fri, 14 Aug 2015 01:32:04 +0000
From: KY Srinivasan <kys@...rosoft.com>
To: James Bottomley <James.Bottomley@...senPartnership.com>
CC: "gregkh@...uxfoundation.org" <gregkh@...uxfoundation.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"devel@...uxdriverproject.org" <devel@...uxdriverproject.org>,
"ohering@...e.com" <ohering@...e.com>,
"jbottomley@...allels.com" <jbottomley@...allels.com>,
"hch@...radead.org" <hch@...radead.org>,
"linux-scsi@...r.kernel.org" <linux-scsi@...r.kernel.org>,
"apw@...onical.com" <apw@...onical.com>,
"vkuznets@...hat.com" <vkuznets@...hat.com>,
"jasowang@...hat.com" <jasowang@...hat.com>,
"Dexuan Cui" <decui@...rosoft.com>
Subject: RE: [PATCH 1/1] Drivers: hv: vmbus: fix init_vp_index() for reloading
hv_netvsc
> -----Original Message-----
> From: James Bottomley [mailto:James.Bottomley@...senPartnership.com]
> Sent: Thursday, August 13, 2015 4:09 PM
> To: KY Srinivasan <kys@...rosoft.com>
> Cc: gregkh@...uxfoundation.org; linux-kernel@...r.kernel.org;
> devel@...uxdriverproject.org; ohering@...e.com;
> jbottomley@...allels.com; hch@...radead.org; linux-scsi@...r.kernel.org;
> apw@...onical.com; vkuznets@...hat.com; jasowang@...hat.com;
> Dexuan Cui <decui@...rosoft.com>
> Subject: Re: [PATCH 1/1] Drivers: hv: vmbus: fix init_vp_index() for reloading
> hv_netvsc
>
> On Thu, 2015-08-13 at 17:07 -0700, K. Y. Srinivasan wrote:
> > From: Dexuan Cui <decui@...rosoft.com>
> >
> > This fixes the recent commit 3b71107d73b16074afa7658f3f0fcf837aabfe24:
>
> Which tree is this in? upstream linus is giving me bad object on that
> id.
Greg's char-misc tree.
>
>
> > Drivers: hv: vmbus: Further improve CPU affiliation logic
> >
> > Without the fix, reloading hv_netvsc hangs the guest.
>
> The reason for looking for the commit id was to see if cc to stable was
> necessary, is it?
The offending patch was committed on August 5th and cc to stable was not necessary.
K. Y
>
> James
>
> > Signed-off-by: Dexuan Cui <decui@...rosoft.com>
> > Signed-off-by: K. Y. Srinivasan <kys@...rosoft.com>
> > ---
> > drivers/hv/channel_mgmt.c | 17 +++++++++++++++++
> > 1 files changed, 17 insertions(+), 0 deletions(-)
> >
> > diff --git a/drivers/hv/channel_mgmt.c b/drivers/hv/channel_mgmt.c
> > index 3ab4753..8a4105c 100644
> > --- a/drivers/hv/channel_mgmt.c
> > +++ b/drivers/hv/channel_mgmt.c
> > @@ -204,6 +204,8 @@ void hv_process_channel_removal(struct
> vmbus_channel *channel, u32 relid)
> > spin_lock_irqsave(&vmbus_connection.channel_lock, flags);
> > list_del(&channel->listentry);
> > spin_unlock_irqrestore(&vmbus_connection.channel_lock,
> flags);
> > +
> > + primary_channel = channel;
> > } else {
> > primary_channel = channel->primary_channel;
> > spin_lock_irqsave(&primary_channel->lock, flags);
> > @@ -211,6 +213,14 @@ void hv_process_channel_removal(struct
> vmbus_channel *channel, u32 relid)
> > primary_channel->num_sc--;
> > spin_unlock_irqrestore(&primary_channel->lock, flags);
> > }
> > +
> > + /*
> > + * We need to free the bit for init_vp_index() to work in the case
> > + * of sub-channel, when we reload drivers like hv_netvsc.
> > + */
> > + cpumask_clear_cpu(channel->target_cpu,
> > + &primary_channel->alloced_cpus_in_node);
> > +
> > free_channel(channel);
> > }
> >
> > @@ -457,6 +467,13 @@ static void init_vp_index(struct vmbus_channel
> *channel, const uuid_le *type_gui
> > continue;
> > }
> >
> > + /*
> > + * NOTE: in the case of sub-channel, we clear the sub-channel
> > + * related bit(s) in primary->alloced_cpus_in_node in
> > + * hv_process_channel_removal(), so when we reload
> drivers
> > + * like hv_netvsc in SMP guest, here we're able to re-allocate
> > + * bit from primary->alloced_cpus_in_node.
> > + */
> > if (!cpumask_test_cpu(cur_cpu,
> > &primary->alloced_cpus_in_node)) {
> > cpumask_set_cpu(cur_cpu,
>
>
Powered by blists - more mailing lists