All of lore.kernel.org
 help / color / mirror / Atom feed
From: Allen Hubbe <Allen.Hubbe@emc.com>
To: linux-ntb@googlegroups.com
Cc: linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org,
	Jon Mason <jdmason@kudzu.us>, Dave Jiang <dave.jiang@intel.com>,
	Allen Hubbe <Allen.Hubbe@emc.com>
Subject: [PATCH v4 17/19] NTB: Default to CPU memcpy for performance
Date: Wed, 10 Jun 2015 05:08:22 -0400	[thread overview]
Message-ID: <a63c3518a82e193b06cfc6e3c51b26e8d3ba7840.1433925092.git.Allen.Hubbe@emc.com> (raw)
In-Reply-To: <cover.1433925092.git.Allen.Hubbe@emc.com>
In-Reply-To: <cover.1433925092.git.Allen.Hubbe@emc.com>

From: Dave Jiang <dave.jiang@intel.com>

Disable DMA usage by default, since the CPU provides much better
performance with write combining.  Provide a module parameter to enable
DMA usage when offloading the memcpy is preferred.

Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Allen Hubbe <Allen.Hubbe@emc.com>
---
 drivers/ntb/ntb_transport.c | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/drivers/ntb/ntb_transport.c b/drivers/ntb/ntb_transport.c
index 7a765d3230d8..e07b056af3be 100644
--- a/drivers/ntb/ntb_transport.c
+++ b/drivers/ntb/ntb_transport.c
@@ -88,6 +88,10 @@ static unsigned int copy_bytes = 1024;
 module_param(copy_bytes, uint, 0644);
 MODULE_PARM_DESC(copy_bytes, "Threshold under which NTB will use the CPU to copy instead of DMA");
 
+static bool use_dma;
+module_param(use_dma, bool, 0644);
+MODULE_PARM_DESC(use_dma, "Use DMA engine to perform large data copy");
+
 static struct dentry *nt_debugfs_dir;
 
 struct ntb_queue_entry {
@@ -1589,10 +1593,15 @@ ntb_transport_create_queue(void *data, struct device *client_dev,
 	dma_cap_zero(dma_mask);
 	dma_cap_set(DMA_MEMCPY, dma_mask);
 
-	qp->dma_chan = dma_request_channel(dma_mask, ntb_dma_filter_fn,
-					   (void *)(unsigned long)node);
-	if (!qp->dma_chan)
-		dev_info(&pdev->dev, "Unable to allocate DMA channel, using CPU instead\n");
+	if (use_dma) {
+		qp->dma_chan = dma_request_channel(dma_mask, ntb_dma_filter_fn,
+						   (void *)(unsigned long)node);
+		if (!qp->dma_chan)
+			dev_info(&pdev->dev, "Unable to allocate DMA channel\n");
+	} else {
+		qp->dma_chan = NULL;
+	}
+	dev_dbg(&pdev->dev, "Using %s memcpy\n", qp->dma_chan ? "DMA" : "CPU");
 
 	for (i = 0; i < NTB_QP_DEF_NUM_ENTRIES; i++) {
 		entry = kzalloc_node(sizeof(*entry), GFP_ATOMIC, node);
-- 
2.4.0.rc0.43.gcf8a8c6


  parent reply	other threads:[~2015-06-10 14:09 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-10  9:08 [PATCH v4 00/19] NTB: Add NTB hardware abstraction layer Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 01/19] NTB: Move files in preparation for NTB abstraction Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 02/19] NTB: Add NTB hardware abstraction layer Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 03/19] NTB: Split ntb_hw_intel and ntb_transport drivers Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 04/19] NTB: Read peer info from local SPAD in transport Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 05/19] NTB: Enable link for Intel root port mode in probe Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 06/19] NTB: Check the device ID to set errata flags Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 07/19] NTB: Differentiate transport link down messages Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 08/19] NTB: Do not advance transport RX on link down Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 09/19] NTB: Reset transport QP link stats on down Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 10/19] NTB: Add parameters for Intel SNB B2B addresses Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 11/19] NTB: Add ping pong test client Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 12/19] NTB: Add tool " Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 13/19] NTB: Rate limit ntb_qp_link_work Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 14/19] NTB: Use NUMA memory and DMA chan in transport Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 15/19] NTB: Use NUMA memory in Intel driver Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 16/19] NTB: Improve performance with write combining Allen Hubbe
2015-06-10  9:08 ` Allen Hubbe [this message]
2015-06-10  9:08 ` [PATCH v4 18/19] NTB: Rename Intel code names to platform names Allen Hubbe
2015-06-10  9:08 ` [PATCH v4 19/19] NTB: Increase transport MTU to 64k from 16k Allen Hubbe

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=a63c3518a82e193b06cfc6e3c51b26e8d3ba7840.1433925092.git.Allen.Hubbe@emc.com \
    --to=allen.hubbe@emc.com \
    --cc=dave.jiang@intel.com \
    --cc=jdmason@kudzu.us \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-ntb@googlegroups.com \
    --cc=linux-pci@vger.kernel.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 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.