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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5823FC3DA7A for ; Fri, 6 Jan 2023 01:05:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236232AbjAFBEz (ORCPT ); Thu, 5 Jan 2023 20:04:55 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58554 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236693AbjAFBEP (ORCPT ); Thu, 5 Jan 2023 20:04:15 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B163F6E43A; Thu, 5 Jan 2023 17:04:06 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 66773B81C19; Fri, 6 Jan 2023 01:04:05 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 164C4C433F0; Fri, 6 Jan 2023 01:04:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672967044; bh=7nGN0imLqUsN8rLrU1iQNAitV+hamnXp6r/JEdFkvHk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Z5FBMqxqL+Ow5sW1pn1MP2BNS+xRWNEB3QUqh/PzvhSyGqULGajp3RMVGmqTBQIxa 5+kubY6GhsCG7AK0T/g5zGmLPNlESG6aHw/byAgs3lTnaEmHXVnUQlPBvj1dXvEy+u KPeodwHgcNRxNhWVPRSmpMdGjKvr8+MrCBGrazT+b7kpwSJZqenhX4OvagSy63GKEp bzrcr417RueGSjcpvVdm5AT16OUyt25d7nzn0GDWhhFj33qi5ObZojZCLou0y+Jpqq WhTY4YNcCFJzRmN8cGOSsHcnZmjrKIlw4yZbNG82EpJBAgazp0hRq18rI7EstWT3eq jrogRHPSXhpAw== Date: Thu, 5 Jan 2023 17:04:03 -0800 From: Saeed Mahameed To: Leon Romanovsky Cc: Jason Gunthorpe , Or Har-Toov , "David S. Miller" , Eric Dumazet , Jakub Kicinski , linux-rdma@vger.kernel.org, Michael Guralnik , netdev@vger.kernel.org, Paolo Abeni , Saeed Mahameed Subject: Re: [PATCH rdma-next 4/4] RDMA/mlx5: Use query_special_contexts for mkeys Message-ID: References: <4c58f1aa2e9664b90ecdc478aef12213816cf1b7.1672819469.git.leonro@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org On 04 Jan 16:03, Leon Romanovsky wrote: >On Wed, Jan 04, 2023 at 09:56:21AM -0400, Jason Gunthorpe wrote: >> On Wed, Jan 04, 2023 at 03:55:25PM +0200, Leon Romanovsky wrote: >> > On Wed, Jan 04, 2023 at 09:13:10AM -0400, Jason Gunthorpe wrote: >> > > On Wed, Jan 04, 2023 at 03:09:54PM +0200, Leon Romanovsky wrote: >> > > > On Wed, Jan 04, 2023 at 09:03:06AM -0400, Jason Gunthorpe wrote: >> > > > > On Wed, Jan 04, 2023 at 10:11:25AM +0200, Leon Romanovsky wrote: >> > > > > > -int mlx5_cmd_null_mkey(struct mlx5_core_dev *dev, u32 *null_mkey) >> > > > > > -{ >> > > > > > - u32 out[MLX5_ST_SZ_DW(query_special_contexts_out)] = {}; >> > > > > > - u32 in[MLX5_ST_SZ_DW(query_special_contexts_in)] = {}; >> > > > > > - int err; >> > > > > > + err = mlx5_cmd_exec_inout(dev->mdev, query_special_contexts, in, out); >> > > > > > + if (err) >> > > > > > + return err; >> > > > > > >> > > > > > - MLX5_SET(query_special_contexts_in, in, opcode, >> > > > > > - MLX5_CMD_OP_QUERY_SPECIAL_CONTEXTS); >> > > > > > - err = mlx5_cmd_exec_inout(dev, query_special_contexts, in, out); >> > > > > > - if (!err) >> > > > > > - *null_mkey = MLX5_GET(query_special_contexts_out, out, >> > > > > > - null_mkey); >> > > > > > - return err; >> > > > > > + if (MLX5_CAP_GEN(dev->mdev, dump_fill_mkey)) >> > > > > > + dev->mkeys.dump_fill_mkey = MLX5_GET(query_special_contexts_out, >> > > > > > + out, dump_fill_mkey); >> > > > > > + >> > > > > > + if (MLX5_CAP_GEN(dev->mdev, null_mkey)) >> > > > > > + dev->mkeys.null_mkey = cpu_to_be32( >> > > > > > + MLX5_GET(query_special_contexts_out, out, null_mkey)); >> > > > > > + >> > > > > > + if (MLX5_CAP_GEN(dev->mdev, terminate_scatter_list_mkey)) { >> > > > > > + dev->mkeys.terminate_scatter_list_mkey = >> > > > > > + cpu_to_be32(MLX5_GET(query_special_contexts_out, out, >> > > > > > + terminate_scatter_list_mkey)); >> > > > > > + return 0; >> > > > > > + } >> > > > > > + dev->mkeys.terminate_scatter_list_mkey = >> > > > > > + MLX5_TERMINATE_SCATTER_LIST_LKEY; >> > > > > >> > > > > This is already stored in the core dev, why are you recalculating it >> > > > > here? >> > > > >> > > > It is not recalculating but setting default value. In core dev, we will >> > > > have value only if MLX5_CAP_GEN(dev->mdev, terminate_scatter_list_mkey) >> > > > is true. >> > > >> > > No, it has the identical code: >> > > >> > > +static int mlx5_get_terminate_scatter_list_mkey(struct mlx5_core_dev *dev) >> > > +{ >> > > + if (MLX5_CAP_GEN(dev, terminate_scatter_list_mkey)) { >> > > + dev->terminate_scatter_list_mkey = >> > > + cpu_to_be32(MLX5_GET(query_special_contexts_out, out, >> > > + terminate_scatter_list_mkey)); >> > > + return 0; >> > > + } >> > > + dev->terminate_scatter_list_mkey = MLX5_TERMINATE_SCATTER_LIST_LKEY; >> > >> > Ahh, you are talking about that. >> > terminate_scatter_list_mkey is part of an output from MLX5_CMD_OP_QUERY_SPECIAL_CONTEXTS, >> > which is needed to get other mkeys. So instead of doing special logic >> > for the terminate_scatter_list_mkey, we decided to use same pattern as >> > for other mkeys, which don't belong to core. >> >> Regardless, don't duplicate the code and maybe don't even duplicate >> the storage of the terminate_scatter_list_mkey > >ok, will update and resend. > Please provide a helper mlx5_get_xyz function, avoid assuming mlx5_core will store it in dev->xyz.