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 0A5C6EE49A0 for ; Wed, 23 Aug 2023 14:46:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236637AbjHWOq1 (ORCPT ); Wed, 23 Aug 2023 10:46:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35736 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236633AbjHWOqZ (ORCPT ); Wed, 23 Aug 2023 10:46:25 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BB8CDE6D for ; Wed, 23 Aug 2023 07:46:23 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 5275D611D0 for ; Wed, 23 Aug 2023 14:46:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9FD94C433C8; Wed, 23 Aug 2023 14:46:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692801982; bh=y9nMdjkiUGfR7L0YnkBfUfdbrk+TevW/ibXcHHXrrRE=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=ccJoZZaxN+nHZRJdo3o7Wh9es+CIwVmKEQZVDVdFuefleucWEZZzKcjYqEnov8Sie BGbHRePqPtxHRR2kwrTbmaKOea4JdPUSLeIaJoDQUgVolDJFlnLb6sVr9dxXBfhUFv wEZJc9phZhGTBnWX1qE2YlFIxCHUhpreVFQfCHkUvJ+JNZvhQ+rp83oVRzLaXRrJsU P4iL0mymdBnwdDsNTR1CxP1jhA8nrn2VocE7IYw+fYvMTG6tBGZ+BYgVRSvJXxj+e+ iFoGGpm5ppcyiOV0uRiSmytdpL2xuTf3CJEreFQ7hU7EgkzLEB8RJRJvYBCw5p9Vzw uXbkt0pL+ebjg== Message-ID: Date: Wed, 23 Aug 2023 22:46:19 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.13.0 Subject: Re: [PATCH 3/3] erofs: remove redundant erofs_fs_type declaration in super.c Content-Language: en-US To: Ferry Meng , linux-erofs@lists.ozlabs.org Cc: LKML References: <20230815094849.53249-1-mengferry@linux.alibaba.com> <20230815094849.53249-3-mengferry@linux.alibaba.com> From: Chao Yu In-Reply-To: <20230815094849.53249-3-mengferry@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/8/15 17:48, Ferry Meng wrote: > As erofs_fs_type has been declared in internal.h, there is no use to > declare repeatedly in super.c. > > Signed-off-by: Ferry Meng Reviewed-by: Chao Yu Thanks,