[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200413154836.rfvkbcg654pc5t5n@debian>
Date: Mon, 13 Apr 2020 16:48:36 +0100
From: Wei Liu <wei.liu@...nel.org>
To: "Andrea Parri (Microsoft)" <parri.andrea@...il.com>
Cc: linux-kernel@...r.kernel.org,
"K . Y . Srinivasan" <kys@...rosoft.com>,
Haiyang Zhang <haiyangz@...rosoft.com>,
Stephen Hemminger <sthemmin@...rosoft.com>,
Wei Liu <wei.liu@...nel.org>, linux-hyperv@...r.kernel.org,
Michael Kelley <mikelley@...rosoft.com>,
Dexuan Cui <decui@...rosoft.com>,
Boqun Feng <boqun.feng@...il.com>,
Vitaly Kuznetsov <vkuznets@...hat.com>,
"David S. Miller" <davem@...emloft.net>,
Lorenzo Pieralisi <lorenzo.pieralisi@....com>,
Andrew Murray <amurray@...goodpenguin.co.uk>,
Bjorn Helgaas <bhelgaas@...gle.com>,
"James E.J. Bottomley" <jejb@...ux.ibm.com>,
"Martin K. Petersen" <martin.petersen@...cle.com>
Subject: Re: [PATCH 00/11] VMBus channel interrupt reassignment
On Mon, Apr 06, 2020 at 02:15:03AM +0200, Andrea Parri (Microsoft) wrote:
> Hi all,
>
> This is a follow-up on the RFC submission [1]. The series introduces
> changes in the VMBus drivers to reassign the CPU that a VMbus channel
> will interrupt. This feature can be used for load balancing or other
> purposes (e.g. CPU offlining). The submission integrates feedback in
> the RFC to amend the handling of the 'array of channels' (patch #3).
>
> Thanks,
> Andrea
>
> [1] https://lkml.kernel.org/r/20200325225505.23998-1-parri.andrea@gmail.com
>
> Cc: "David S. Miller" <davem@...emloft.net>
> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@....com>
> Cc: Andrew Murray <amurray@...goodpenguin.co.uk>
> Cc: Bjorn Helgaas <bhelgaas@...gle.com>
> Cc: "James E.J. Bottomley" <jejb@...ux.ibm.com>
> Cc: "Martin K. Petersen" <martin.petersen@...cle.com>
>
> Andrea Parri (Microsoft) (11):
> Drivers: hv: vmbus: Always handle the VMBus messages on CPU0
> Drivers: hv: vmbus: Don't bind the offer&rescind works to a specific
> CPU
> Drivers: hv: vmbus: Replace the per-CPU channel lists with a global
> array of channels
> hv_netvsc: Disable NAPI before closing the VMBus channel
> hv_utils: Always execute the fcopy and vss callbacks in a tasklet
> Drivers: hv: vmbus: Use a spin lock for synchronizing channel
> scheduling vs. channel removal
> PCI: hv: Prepare hv_compose_msi_msg() for the
> VMBus-channel-interrupt-to-vCPU reassignment functionality
> Drivers: hv: vmbus: Remove the unused HV_LOCALIZED channel affinity
> logic
> Drivers: hv: vmbus: Synchronize init_vp_index() vs. CPU hotplug
> Drivers: hv: vmbus: Introduce the CHANNELMSG_MODIFYCHANNEL message
> type
> scsi: storvsc: Re-init stor_chns when a channel interrupt is
> re-assigned
>
Applied to hyperv-next. Thanks.
This hunk in patch 10 doesn't apply cleanly because it conflicts with
Vitaly's patch.
diff --git a/drivers/hv/channel_mgmt.c b/drivers/hv/channel_mgmt.c
index 3785beead503d..1058c814ab06e 100644
--- a/drivers/hv/channel_mgmt.c
+++ b/drivers/hv/channel_mgmt.c
@@ -1377,7 +1377,7 @@ channel_message_table[CHANNELMSG_COUNT] = {
{ CHANNELMSG_19, 0, NULL },
{ CHANNELMSG_20, 0, NULL },
{ CHANNELMSG_TL_CONNECT_REQUEST, 0, NULL },
- { CHANNELMSG_22, 0, NULL },
+ { CHANNELMSG_MODIFYCHANNEL, 0, NULL },
{ CHANNELMSG_TL_CONNECT_RESULT, 0, NULL },
};
I have fixed it up. New hunk looks like:
diff --git a/drivers/hv/channel_mgmt.c b/drivers/hv/channel_mgmt.c
index a6b21838e2de..9c62eb5e4135 100644
--- a/drivers/hv/channel_mgmt.c
+++ b/drivers/hv/channel_mgmt.c
@@ -1380,7 +1380,7 @@ channel_message_table[CHANNELMSG_COUNT] = {
{ CHANNELMSG_19, 0, NULL, 0},
{ CHANNELMSG_20, 0, NULL, 0},
{ CHANNELMSG_TL_CONNECT_REQUEST, 0, NULL, 0},
- { CHANNELMSG_22, 0, NULL, 0},
+ { CHANNELMSG_MODIFYCHANNEL, 0, NULL, 0},
{ CHANNELMSG_TL_CONNECT_RESULT, 0, NULL, 0},
};
Let me know if I messed it up.
Wei.
Powered by blists - more mailing lists