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 35B19C636CC for ; Tue, 14 Feb 2023 01:43:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229973AbjBNBnB (ORCPT ); Mon, 13 Feb 2023 20:43:01 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49346 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229462AbjBNBm6 (ORCPT ); Mon, 13 Feb 2023 20:42:58 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 148E8A5D8 for ; Mon, 13 Feb 2023 17:42:58 -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 dfw.source.kernel.org (Postfix) with ESMTPS id 9B6F961321 for ; Tue, 14 Feb 2023 01:42:57 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0E6FCC433D2; Tue, 14 Feb 2023 01:42:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1676338977; bh=7Aw+lFf2GKn1e8zcJaIaZ6GDRglUt/eLL0AZcc4QVWs=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=ltjtaO08iIIGLhYLCILTc/8YmAIm758+wWAxwNnQ2Si3Gp6AvKZ3Lt5NEEHz7oSY+ yUl0GMQLhpBQwhUAMRCj/SraasE3MHsXPeyu4ZHYMqm+XmOsi/ln7LnXSgGfY4ccmZ fc+j0v+nxpChI46RsnDghdvhc+XjaNfbkRxeUjexMX2/Lg3Xe3p8Oq0BLJcU6PFVj2 Rza5wXqOBJabAHX2QD3h4zGemXVMuRL5F9DYhYR0jvoJl7TM6cOE3VUtF9gveU0lUU UsSBmvwF5NYMlw32BXLkUKsVRPE74mYm2VrsPjSOvGNPhDyjJRM6nwWQGys1+SEpGT q8nflKkKXDlwQ== Message-ID: Date: Tue, 14 Feb 2023 09:42:54 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.7.2 Subject: Re: [PATCH] f2fs: make kobj_type structures constant Content-Language: en-US To: Jaegeuk Kim Cc: =?UTF-8?Q?Thomas_Wei=c3=9fschuh?= , linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org References: <20230209-kobj_type-f2fs-v1-1-b6feedbdd4a8@weissschuh.net> From: Chao Yu In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/2/14 1:51, Jaegeuk Kim wrote: > On 02/13, Chao Yu wrote: >> On 2023/2/9 11:20, 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: Chao Yu > > Hi Chao, > > Note that, next time, I won't apply/modify any patches merged in -dev, > unless it has a problem. Hi Jaegeuk, Oh, any particular reason, to avoid unneeded commit id change when the time is close to merge window? Is there any period of grace before merging patches from dev-test branch into dev branch? Maybe a week is reasonable? so I may have time to catch up in time. Thanks, > > Thanks, > >> >> Thanks,