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 1297CC61DA4 for ; Thu, 9 Feb 2023 03:56:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232875AbjBID4C (ORCPT ); Wed, 8 Feb 2023 22:56:02 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47130 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232432AbjBIDz7 (ORCPT ); Wed, 8 Feb 2023 22:55:59 -0500 Received: from out30-133.freemail.mail.aliyun.com (out30-133.freemail.mail.aliyun.com [115.124.30.133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4CC3E2B298 for ; Wed, 8 Feb 2023 19:55:57 -0800 (PST) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R971e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018045192;MF=jefflexu@linux.alibaba.com;NM=1;PH=DS;RN=6;SR=0;TI=SMTPD_---0VbEPl.i_1675914953; Received: from 30.221.133.91(mailfrom:jefflexu@linux.alibaba.com fp:SMTPD_---0VbEPl.i_1675914953) by smtp.aliyun-inc.com; Thu, 09 Feb 2023 11:55:54 +0800 Message-ID: <33043e28-f0ad-852b-f338-c1ac1174a809@linux.alibaba.com> Date: Thu, 9 Feb 2023 11:55:53 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [PATCH] erofs: make kobj_type structures constant Content-Language: en-US To: =?UTF-8?Q?Thomas_Wei=c3=9fschuh?= , Gao Xiang , Chao Yu , Yue Hu Cc: linux-erofs@lists.ozlabs.org, linux-kernel@vger.kernel.org References: <20230209-kobj_type-erofs-v1-1-078c945e2c4b@weissschuh.net> From: Jingbo Xu In-Reply-To: <20230209-kobj_type-erofs-v1-1-078c945e2c4b@weissschuh.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2/9/23 11:21 AM, Thomas Weißschuh wrote: > Since commit ee6d3dd4ed48 ("driver core: make kobj_type constant.") > the driver core allows the usage of const struct kobj_type. > > Take advantage of this to constify the structure definitions to prevent > modification at runtime. > > Signed-off-by: Thomas Weißschuh Reviewed-by: Jingbo Xu > --- > fs/erofs/sysfs.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/fs/erofs/sysfs.c b/fs/erofs/sysfs.c > index fd476961f742..435e515c0792 100644 > --- a/fs/erofs/sysfs.c > +++ b/fs/erofs/sysfs.c > @@ -179,13 +179,13 @@ static const struct sysfs_ops erofs_attr_ops = { > .store = erofs_attr_store, > }; > > -static struct kobj_type erofs_sb_ktype = { > +static const struct kobj_type erofs_sb_ktype = { > .default_groups = erofs_groups, > .sysfs_ops = &erofs_attr_ops, > .release = erofs_sb_release, > }; > > -static struct kobj_type erofs_ktype = { > +static const struct kobj_type erofs_ktype = { > .sysfs_ops = &erofs_attr_ops, > }; > > @@ -193,7 +193,7 @@ static struct kset erofs_root = { > .kobj = {.ktype = &erofs_ktype}, > }; > > -static struct kobj_type erofs_feat_ktype = { > +static const struct kobj_type erofs_feat_ktype = { > .default_groups = erofs_feat_groups, > .sysfs_ops = &erofs_attr_ops, > }; > > --- > base-commit: 0983f6bf2bfc0789b51ddf7315f644ff4da50acb > change-id: 20230209-kobj_type-erofs-0f0f4c901045 > > Best regards, -- Thanks, Jingbo