From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D150137C85 for ; Tue, 26 Sep 2023 17:30:10 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 27C84C433C8; Tue, 26 Sep 2023 17:30:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1695749410; bh=4BCR5+ia34bKjgZ3WQ5jOW0HdAcDUewCNvoaxlZIikg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=pxTD8f9RFgHUxrpUlPk3ZJXa9TAqzdd3SLKBcMb0ooRvgr9o3kknjmYA96UZpArs1 LTIXntUVgKRlOTp+yshSgN680kRTkJLGLH7d9DEeCMec4v3cKy0yInZwDZmnwUW4z3 LpcHkNDg5WaY8Xn053Vn/43gHTuP1DAloEtIqw4gIZL/ci8MIdve7WSREPTcJDT4Uo frAcf2Vhf/pLCbKztN2kGy+PFRWjfQQv/YVrkW5Yt/y8kru9GTHATd08dIT5JekphW uPmJT3Kxavr6RO1McwcNjAW478UC3tUYsKKNX1RObSMDBVhssk/dYRtvCfzYspZByL FI5VE1kDNVxQg== Date: Tue, 26 Sep 2023 20:30:06 +0300 From: Leon Romanovsky To: Dust Li Cc: Alexandra Winter , Albert Huang , Karsten Graul , Wenjia Zhang , Jan Karcher , "D. Wythe" , Tony Lu , Wen Gu , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , linux-s390@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, RDMA mailing list , Jason Gunthorpe Subject: Re: [PATCH net-next] net/smc: add support for netdevice in containers. Message-ID: <20230926173006.GN1642130@unreal> References: <20230925023546.9964-1-huangjie.albert@bytedance.com> <20230926104831.GJ1642130@unreal> <76a74084-a900-d559-1f63-deff84e5848a@linux.ibm.com> <20230926114104.GL1642130@unreal> <20230926120903.GD92403@linux.alibaba.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230926120903.GD92403@linux.alibaba.com> On Tue, Sep 26, 2023 at 08:09:03PM +0800, Dust Li wrote: > On Tue, Sep 26, 2023 at 02:41:04PM +0300, Leon Romanovsky wrote: > >On Tue, Sep 26, 2023 at 01:14:04PM +0200, Alexandra Winter wrote: > >> > >> > >> On 26.09.23 12:48, Leon Romanovsky wrote: > >> > This patch made me wonder, why doesn't SMC use RDMA-CM like all other > >> > in-kernel ULPs which work over RDMA? > >> > > >> > Thanks > >> > >> The idea behind SMC is that it should look an feel to the applications > >> like TCP sockets. So for connection management it uses TCP over IP; > >> RDMA is just used for the data transfer. > > > >I think that it is not different from other ULPs. For example, RDS works > >over sockets and doesn't touch or reimplement GID management logic. > > I think the difference is SMC socket need to be compatible with TCP > socket, so it need a tcp socket to fallback when something is not working. > > If SMC works with rdmacm, it still need a fallback-to-tcp socket, and > the tcp connection has to be established for each SMC socket before the > SMC socket got established, that would make rdmacm meaningless. You still need to perform device-GID-route translations [1], which sounds to me very RDMA-CM. I'm not asking you to rewrite the code, but trying to get rationale behind reimplementing part of RDMA subsystem. Thanks [1] 24fb68111d45 ("net/smc: retrieve v2 gid from IB device") > > Best regards, > Dust > > > > >Thanks