From patchwork Wed Oct 18 23:08:59 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Long Li X-Patchwork-Id: 827860 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=linux-cifs-owner@vger.kernel.org; receiver=) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3yHSZL0BSSz9t44 for ; Thu, 19 Oct 2017 10:14:50 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751496AbdJRXK4 (ORCPT ); Wed, 18 Oct 2017 19:10:56 -0400 Received: from a2nlsmtp01-02.prod.iad2.secureserver.net ([198.71.225.36]:35438 "EHLO a2nlsmtp01-02.prod.iad2.secureserver.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751060AbdJRXKy (ORCPT ); Wed, 18 Oct 2017 19:10:54 -0400 Received: from linuxonhyperv.com ([107.180.71.197]) by : HOSTING RELAY : with SMTP id 4xSve074ROVNQ4xSvevdBq; Wed, 18 Oct 2017 16:09:53 -0700 x-originating-ip: 107.180.71.197 Received: from longli by linuxonhyperv.com with local (Exim 4.89) (envelope-from ) id 1e4xSu-0005U6-VG; Wed, 18 Oct 2017 16:09:33 -0700 From: Long Li To: Steve French , linux-cifs@vger.kernel.org, samba-technical@lists.samba.org, linux-kernel@vger.kernel.org, linux-rdma@vger.kernel.org, Tom Talpey , Matthew Wilcox , Stephen Hemminger Cc: Long Li Subject: [Patch v5 00/21] CIFS: Implement SMB Direct protocol Date: Wed, 18 Oct 2017 16:08:59 -0700 Message-Id: <20171018230920.21042-1-longli@exchange.microsoft.com> X-Mailer: git-send-email 2.14.1 X-CMAE-Envelope: MS4wfB8i4WH/y4xDLhVCvit/QRPYHcwk+abfbWmgtIGJJ8zGyEdqL21W+bBTVdi8tGir0948pPbGHWn6a2d0/vgIgf53wsA9/b7rJvrxcLm/+4/dWSptih2U sjPIqQOqWcx7/H1hANY5DZXy1eLv71Ai8ZOZ0JdWFMTE6DyUEPQpFHF33yD2/zBs1m1YHyCW62QP+OsbQaB/GteXkMUYBoUJ+XMA8tXKmKIU/3KaGR4y6yBl IsVxwvxf1ZcDOzjlqZsS1WDCvxc4dBC9QTLzTLEb77qAZ33Xej0vLDVFHOsOpGgFhjwiotW/jQGxASZD7oezmUEyoYs/p4zbbT41MVjBgZeG34B+6bEtSWK7 geb9UIpwDIVVGKXhJNUDFKZq2TbXtEhuwjMGmgyUkJzzmvAp+XPz0iPprbqKNZxACTQyyev8jAAgGKNF3wBaJYqpJo8rdRjmSBrAfazif0oxyWgflXT6ytSY HUB9pakpFDsHFpjM Sender: linux-cifs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-cifs@vger.kernel.org From: Long Li Starting with SMB2 dialect 3.0, Microsoft introduced SMB Direct transport protocol for transferring upper layer (SMB2) payload over RDMA via Infiniband, RoCE or iWARP. The prococol is published in [MS-SMBD] (https://msdn.microsoft.com/en-us/library/hh536346.aspx). Patch v2 added RDMA read/write via memory registration, and addressed feedbacks on v1. Patch v3 improved performance by introducing an additional queue for handling empty packets and reducing lock contention on IRQ path. Also added light weight profiling by reading TSC and addressed feedbacks on v2. Patch v4 fixed connectivity issues with iWAPR devices and addressed comments. Patch v5 fixed compiling errors on ia64, i386 and when INFINIBAND is not configured, and addressed comments. Profiling is removed and will be introduced in a seperate patch. Long Li (21): CIFS: SMBD: Add SMB Direct protocol initial values and constants CIFS: SMBD: Establish SMB Direct connection CIFS: SMBD: export protocol initial values CIFS: SMBD: Add rdma mount option CIFS: SMBD: Implement function to create a SMB Direct connection CIFS: SMBD: Upper layer connects to SMBDirect session CIFS: SMBD: Implement function to reconnect to a SMB Direct transport CIFS: SMBD: Upper layer reconnects to SMB Direct session CIFS: SMBD: Implement function to destroy a SMB Direct connection CIFS: SMBD: Upper layer destroys SMB Direct session on shutdown or umount CIFS: SMBD: Set SMB Direct maximum read or write size for I/O CIFS: SMBD: Implement function to receive data via RDMA receive CIFS: SMBD: Upper layer receives data via RDMA receive CIFS: SMBD: Implement function to send data via RDMA send CIFS: SMBD: Upper layer sends data via RDMA send CIFS: SMBD: Implement RDMA memory registration CIFS: SMBD: Upper layer performs SMB write via RDMA read through memory registration CIFS: SMBD: Add parameter rdata to smb2_new_read_req CIFS: SMBD: Read correct returned data length for RDMA write (SMB read) I/O CIFS: SMBD: Upper layer performs SMB read via RDMA write through memory registration CIFS: SMBD: Add SMB Direct debug counters fs/cifs/Kconfig | 7 + fs/cifs/Makefile | 2 + fs/cifs/cifs_debug.c | 147 +++ fs/cifs/cifsfs.c | 2 + fs/cifs/cifsglob.h | 23 +- fs/cifs/cifssmb.c | 16 +- fs/cifs/connect.c | 64 +- fs/cifs/file.c | 19 +- fs/cifs/smb1ops.c | 6 +- fs/cifs/smb2ops.c | 26 +- fs/cifs/smb2pdu.c | 129 ++- fs/cifs/smbdirect.c | 2617 ++++++++++++++++++++++++++++++++++++++++++++++++++ fs/cifs/smbdirect.h | 315 ++++++ fs/cifs/transport.c | 14 +- 14 files changed, 3359 insertions(+), 28 deletions(-) create mode 100644 fs/cifs/smbdirect.c create mode 100644 fs/cifs/smbdirect.h