[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210228150315.2552437-13-ltykernel@gmail.com>
Date: Sun, 28 Feb 2021 10:03:15 -0500
From: Tianyu Lan <ltykernel@...il.com>
To: kys@...rosoft.com, haiyangz@...rosoft.com, sthemmin@...rosoft.com,
wei.liu@...nel.org, jejb@...ux.ibm.com, martin.petersen@...cle.com
Cc: Tianyu Lan <Tianyu.Lan@...rosoft.com>,
linux-hyperv@...r.kernel.org, linux-scsi@...r.kernel.org,
linux-kernel@...r.kernel.org, vkuznets@...hat.com,
thomas.lendacky@....com, brijesh.singh@....com,
sunilmut@...rosoft.com
Subject: [RFC PATCH 12/12] HV/Storvsc: Add bounce buffer support for Storvsc
From: Tianyu Lan <Tianyu.Lan@...rosoft.com>
Storvsc driver needs to reverse additional bounce
buffers to receive multipagebuffer packet and copy
data from brounce buffer when get response messge
from message.
Signed-off-by: Sunil Muthuswamy <sunilmut@...rosoft.com>
Co-Developed-by: Sunil Muthuswamy <sunilmut@...rosoft.com>
Signed-off-by: Tianyu Lan <Tianyu.Lan@...rosoft.com>
---
drivers/scsi/storvsc_drv.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/drivers/scsi/storvsc_drv.c b/drivers/scsi/storvsc_drv.c
index c5b4974eb41f..4ae8e2a427e4 100644
--- a/drivers/scsi/storvsc_drv.c
+++ b/drivers/scsi/storvsc_drv.c
@@ -33,6 +33,8 @@
#include <scsi/scsi_transport.h>
#include <asm/mshyperv.h>
+#include "../hv/hyperv_vmbus.h"
+
/*
* All wire protocol details (storage protocol between the guest and the host)
* are consolidated here.
@@ -725,6 +727,10 @@ static void handle_sc_creation(struct vmbus_channel *new_sc)
/* Add the sub-channel to the array of available channels. */
stor_device->stor_chns[new_sc->target_cpu] = new_sc;
cpumask_set_cpu(new_sc->target_cpu, &stor_device->alloced_cpus);
+
+ if (hv_bounce_resources_reserve(device->channel,
+ stor_device->max_transfer_bytes))
+ pr_warn("Fail to reserve bounce buffer\n");
}
static void handle_multichannel_storage(struct hv_device *device, int max_chns)
@@ -964,6 +970,18 @@ static int storvsc_channel_init(struct hv_device *device, bool is_fc)
stor_device->max_transfer_bytes =
vstor_packet->storage_channel_properties.max_transfer_bytes;
+ /*
+ * Reserve enough bounce resources to be able to support paging
+ * operations under low memory conditions, that cannot rely on
+ * additional resources to be allocated.
+ */
+ ret = hv_bounce_resources_reserve(device->channel,
+ stor_device->max_transfer_bytes);
+ if (ret < 0) {
+ pr_warn("Fail to reserve bounce buffer\n");
+ goto done;
+ }
+
if (!is_fc)
goto done;
@@ -1263,6 +1281,11 @@ static void storvsc_on_channel_callback(void *context)
request = (struct storvsc_cmd_request *)(unsigned long)cmd_rqst;
+ if (desc->type == VM_PKT_COMP && request->bounce_pkt) {
+ hv_pkt_bounce(channel, request->bounce_pkt);
+ request->bounce_pkt = NULL;
+ }
+
if (request == &stor_device->init_request ||
request == &stor_device->reset_request) {
memcpy(&request->vstor_packet, packet,
--
2.25.1
Powered by blists - more mailing lists