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=-6.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, 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 65EA5C47082 for ; Mon, 7 Jun 2021 10:25:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 46C5F611AD for ; Mon, 7 Jun 2021 10:25:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230194AbhFGK1G (ORCPT ); Mon, 7 Jun 2021 06:27:06 -0400 Received: from mail.kernel.org ([198.145.29.99]:49760 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230127AbhFGK1F (ORCPT ); Mon, 7 Jun 2021 06:27:05 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 2D200611AD; Mon, 7 Jun 2021 10:25:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1623061505; bh=amHnAOUniK9QiSutr2S+7gZcLass0vkZd3TBWEJb0fo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Q1KbwVFvpRKW3Dz/ZTL28TG7N9T8Aqklmazl/ndkcpoXmoHPySetgabW99iT5xJtp jSO8jPT6Im1A9NM3uSVn2JKGgqIAclJGSYN3Pa5f+jNl4tR+CU96B13PGdJarN3b84 69FaNtD8+MhDUxybhod854s8XNFfiwz0E+GDIlVQ= Date: Mon, 7 Jun 2021 12:25:03 +0200 From: Greg KH To: Leon Romanovsky Cc: Doug Ledford , Jason Gunthorpe , Kees Cook , Nathan Chancellor , Adit Ranadive , Ariel Elior , Christian Benvenuti , clang-built-linux@googlegroups.com, Dennis Dalessandro , Devesh Sharma , Gal Pressman , linux-kernel@vger.kernel.org, linux-rdma@vger.kernel.org, Michal Kalderon , Mike Marciniszyn , Mustafa Ismail , Naresh Kumar PBS , Nelson Escobar , Nick Desaulniers , Potnuri Bharat Teja , Selvin Xavier , Shiraz Saleem , VMware PV-Drivers , Yishai Hadas , Zhu Yanjun Subject: Re: [PATCH rdma-next v1 10/15] RDMA/cm: Use an attribute_group on the ib_port_attribute intead of kobj's Message-ID: References: <00e578937f557954d240bc0856f45b3f752d6cba.1623053078.git.leonro@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <00e578937f557954d240bc0856f45b3f752d6cba.1623053078.git.leonro@nvidia.com> Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org On Mon, Jun 07, 2021 at 11:17:35AM +0300, Leon Romanovsky wrote: > From: Jason Gunthorpe > > This code is trying to attach a list of counters grouped into 4 groups to > the ib_port sysfs. Instead of creating a bunch of kobjects simply express > everything naturally as an ib_port_attribute and add a single > attribute_groups list. > > Remove all the naked kobject manipulations. Much nicer. But why do you need your counters to be atomic in the first place? What are they counting that requires this? Given that they are just a statistic for userspace, making them be a u64 should work just the same, right? thanks, greg k-h