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=-16.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham 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 45AE5C2BB48 for ; Tue, 8 Dec 2020 07:16:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 06CB223A6A for ; Tue, 8 Dec 2020 07:16:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726996AbgLHHQD (ORCPT ); Tue, 8 Dec 2020 02:16:03 -0500 Received: from mail.kernel.org ([198.145.29.99]:41114 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726977AbgLHHQD (ORCPT ); Tue, 8 Dec 2020 02:16:03 -0500 Date: Tue, 8 Dec 2020 09:15:16 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1607411722; bh=JyUtaj5Qbk6CIHZubXUlWVSbjf3SZBEnZ3kd6IWCKko=; h=From:To:Cc:Subject:References:In-Reply-To:From; b=GT89sFC/vmEZNUb87GI7AXuj+RmckLUp+EjZq60hqgGjbycwS8nx6l/NMCdtW5lSN m8qBwWqZwVGhiv7vescdlniX0mqr27FIv0wcy5oZjF/LWVQHGjfJj6ccQdFj2WnvfT MmUSUw3PhNX987YQQX7Pbl0Dqii+3fMywKB9+WBEDhT0LvMlsz8Wve4aaFRChPN68P EixwkflRNuQKj56zonKLzJn+1YWAYJo5KQWbIZ72Pk/R79jPWBMlG1OxeIm+GyfMJP 7ShN+WkwPYOldPE0nqCkR1A0/2eSwwLs1MQGGqur0tfe1CChp87HCO6AJ72pzroOSr xvlBEX6pceTFQ== From: Leon Romanovsky To: Jianxin Xiong Cc: linux-rdma@vger.kernel.org, dri-devel@lists.freedesktop.org, Doug Ledford , Jason Gunthorpe , Sumit Semwal , Christian Koenig , Daniel Vetter Subject: Re: [PATCH v13 3/4] RDMA/uverbs: Add uverbs command for dma-buf based MR registration Message-ID: <20201208071516.GG4430@unreal> References: <1607379353-116215-1-git-send-email-jianxin.xiong@intel.com> <1607379353-116215-4-git-send-email-jianxin.xiong@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1607379353-116215-4-git-send-email-jianxin.xiong@intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org On Mon, Dec 07, 2020 at 02:15:52PM -0800, Jianxin Xiong wrote: > Implement a new uverbs ioctl method for memory registration with file > descriptor as an extra parameter. > > Signed-off-by: Jianxin Xiong > Reviewed-by: Sean Hefty > Acked-by: Michael J. Ruhl > Acked-by: Christian Koenig > Acked-by: Daniel Vetter > --- > drivers/infiniband/core/uverbs_std_types_mr.c | 117 +++++++++++++++++++++++++- > include/uapi/rdma/ib_user_ioctl_cmds.h | 14 +++ > 2 files changed, 129 insertions(+), 2 deletions(-) > Thanks, Reviewed-by: Leon Romanovsky