Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753388AbdHBUOZ (ORCPT ); Wed, 2 Aug 2017 16:14:25 -0400 Received: from a2nlsmtp01-04.prod.iad2.secureserver.net ([198.71.225.38]:36940 "EHLO a2nlsmtp01-04.prod.iad2.secureserver.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753047AbdHBUM1 (ORCPT ); Wed, 2 Aug 2017 16:12:27 -0400 x-originating-ip: 107.180.71.197 From: Long Li To: Steve French , linux-cifs@vger.kernel.org, samba-technical@lists.samba.org, linux-kernel@vger.kernel.org Cc: Long Li Subject: [[PATCH v1] 31/37] [CIFS] Add SMBD transport to SMB session context Date: Wed, 2 Aug 2017 13:10:42 -0700 Message-Id: <1501704648-20159-32-git-send-email-longli@exchange.microsoft.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1501704648-20159-1-git-send-email-longli@exchange.microsoft.com> References: <1501704648-20159-1-git-send-email-longli@exchange.microsoft.com> X-CMAE-Envelope: MS4wfF/hggb3KEnTtqzrFYu9HNg7B14VX7iTRjvqrNTjh6nM8kgP6S6qjfCHZDWMT8uL0WhLvA0wC5cZkWLtM/ea3PTvDR39ChUGNf7i6nFG5gd9IoYmYrAA X8NJW+GMkYrNYpSmigw8lMYyf2k3KGqU95RsdniLq5Ps/ekU9uF7W5VcRPe/HDOjx9w2evWMjP5SXpOG3kR53Ym886kE/WqyTc0Fw/mOrN4yZxMktJm8B2bF J91S4fN6lYLHmhoZtac39iNjCzGDQWKCX9tzeMy0YEqS9rM+hyfWhKirgS+94ZjGe7E+skuJIhuHiGFkghl+SwUI/U8giSEV0DOJ0FNaUn4= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 656 Lines: 23 From: Long Li With the SMBD transport implemented, now add to the SMB session context. Now the upper layer can use SMBD transport in a SMB session. Signed-off-by: Long Li --- fs/cifs/cifsglob.h | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 20af553..413b011 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -581,6 +581,7 @@ inc_rfc1001_len(void *buf, int count) } struct TCP_Server_Info { + struct cifs_rdma_info *rdma_ses; struct list_head tcp_ses_list; struct list_head smb_ses_list; int srv_count; /* reference counter */ -- 2.7.4