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=-1.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED 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 859C6C433DF for ; Tue, 23 Jun 2020 14:27:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 560CF2072E for ; Tue, 23 Jun 2020 14:27:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592922452; bh=cKE8GGN8F2Bic02isSz2R/jPclxbyJspW4PZYEsBCFM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=LFGNHKWJhhH8e9lgeqar/hmMQkYkdFvUnUm26q0NyDEikic6KsRq0PwfzRzG8pExm RXVktBAyLxL9uY9jW8vXX6cDytakGTxRsUudfmuGMu2Et34oRpAvmurKfLfYctKZsk p83ZKb/ruPdDGDhCHCcibZu/SDcWRq8zr4lLSads= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732757AbgFWO1b (ORCPT ); Tue, 23 Jun 2020 10:27:31 -0400 Received: from mail.kernel.org ([198.145.29.99]:48880 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732737AbgFWO1b (ORCPT ); Tue, 23 Jun 2020 10:27:31 -0400 Received: from localhost (unknown [213.57.247.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 4700C2073E; Tue, 23 Jun 2020 14:27:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592922450; bh=cKE8GGN8F2Bic02isSz2R/jPclxbyJspW4PZYEsBCFM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=T+Ua5k9tSnuu7lGXD+jjcvLChOdZYLQ4nKF+FuM9DtVmykfdaT33m29d+WI8DtjKV 2jjKB1eyjYfz7kt8jubTownqHwowXyi3LgODuPneoklTw/iiHZELWPO07fPYs74cBw QKO6ORlfWeOo1rKAHW7QAWxry8mHQI4CQMn7OwBg= Date: Tue, 23 Jun 2020 17:27:27 +0300 From: Leon Romanovsky To: Jason Gunthorpe Cc: Doug Ledford , Jakub Kicinski , Lijun Ou , linux-rdma@vger.kernel.org, Maor Gottlieb , netdev@vger.kernel.org, Potnuri Bharat Teja , Saeed Mahameed , Weihang Li , "Wei Hu(Xavier)" Subject: Re: [PATCH rdma-next v3 00/11] RAW format dumps through RDMAtool Message-ID: <20200623142727.GB184720@unreal> References: <20200623113043.1228482-1-leon@kernel.org> <20200623141957.GG2874652@mellanox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200623141957.GG2874652@mellanox.com> Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org On Tue, Jun 23, 2020 at 11:19:57AM -0300, Jason Gunthorpe wrote: > On Tue, Jun 23, 2020 at 02:30:32PM +0300, Leon Romanovsky wrote: > > From: Leon Romanovsky > > > > Changelog: > > v3: > > * Rewrote query interface in patch "RDMA: Add support to dump resource > > tracker in RAW format" > > v2: > > https://lore.kernel.org/linux-rdma/20200616104006.2425549-1-leon@kernel.org > > * Converted to specific nldev ops for RAW. > > * Rebased on top of v5.8-rc1. > > v1: > > https://lore.kernel.org/linux-rdma/20200527135408.480878-1-leon@kernel.org > > * Maor dropped controversial change to dummy interface. > > v0: > > https://lore.kernel.org/linux-rdma/20200513095034.208385-1-leon@kernel.org > > > > > > Hi, > > > > The following series adds support to get the RDMA resource data in RAW > > format. The main motivation for doing this is to enable vendors to return > > the entire QP/CQ/MR data without a need from the vendor to set each > > field separately. > > > > Thanks > > > > > > Maor Gottlieb (11): > > net/mlx5: Export resource dump interface > > net/mlx5: Add support in query QP, CQ and MKEY segments > > It looks OK can you apply these too the shared branch? Thanks, applied. 608ca553c9a2 net/mlx5: Add support in query QP, CQ and MKEY segments d63cc24933c7 net/mlx5: Export resource dump interface > > Thanks, > Jason