From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2C47BC07E9B for ; Wed, 21 Jul 2021 04:35:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F24FE60725 for ; Wed, 21 Jul 2021 04:34:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231363AbhGUDyS (ORCPT ); Tue, 20 Jul 2021 23:54:18 -0400 Received: from mail.kernel.org ([198.145.29.99]:40868 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232029AbhGUDyJ (ORCPT ); Tue, 20 Jul 2021 23:54:09 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 68BD460720; Wed, 21 Jul 2021 04:34:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1626842082; bh=KRpsVI65gthj5QDGSh4UubthxVcYYxACPtmwB+Chn0A=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=paMtprHbspYLEbLKub2xy49Jt5N2aLiSMWhhypTnnMkmFlHhfD/tp57H0SoiW8glF I5K55rQ8EgOLEBebiETceYs7jFQHTnlq2kZwb2dzjgK1WLkfbVbgsvEzwFoY6I/8i1 r/7cmFYEBlp4tgR3UbU5R9sJOLZWAiqXoWP6hPLTYlDxnj9gyKOZzersa4PMeSxO3g wkYqWNqvNtXVE8jRFyVt3kDP5w4n2AZZGSyfovsSGWr6/Ir44d/3CekAprP4RFUXeE ERlIvis1ewsnCESiZ1iBx1BWeHAjw533sK6H7+7Q0YCmXbY2eVJ2e45lWWAppUFo5X jUfdUnCCsgMwg== Date: Wed, 21 Jul 2021 07:34:38 +0300 From: Leon Romanovsky To: Jason Gunthorpe Cc: Doug Ledford , linux-rdma@vger.kernel.org, Lior Nahmanson , Meir Lichtinger , netdev@vger.kernel.org, Saeed Mahameed Subject: Re: [PATCH rdma-next v1 0/3] Add ConnectX DCS offload support Message-ID: References: <20210720181848.GA1207526@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210720181848.GA1207526@nvidia.com> Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org On Tue, Jul 20, 2021 at 03:18:48PM -0300, Jason Gunthorpe wrote: > On Mon, Jun 21, 2021 at 10:06:13AM +0300, Leon Romanovsky wrote: > > From: Leon Romanovsky > > > > Changelog: > > v1: > > * Rephrase commit message of second patch > > v0: https://lore.kernel.org/linux-rdma/cover.1622723815.git.leonro@nvidia.com > > > > ------------ > > > > This patchset from Lior adds support of DCI stream channel (DCS) support. > > > > DCS is an offload to SW load balancing of DC initiator work requests. > > > > A single DC QP initiator (DCI) can be connected to only one target at the time > > and can't start new connection until the previous work request is completed. > > > > This limitation causes to delays when the initiator process needs to > > transfer data to multiple targets at the same time. > > > > Thanks > > > > Lior Nahmanson (3): > > net/mlx5: Add DCS caps & fields support > > RDMA/mlx5: Separate DCI QP creation logic > > RDMA/mlx5: Add DCS offload support > > Applied to for-next, thanks Jason, You forgot to push this to the RDMA tree. Thanks > > Jason