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 C784EC433FE for ; Mon, 10 Oct 2022 17:23:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229771AbiJJRXT (ORCPT ); Mon, 10 Oct 2022 13:23:19 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38106 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229983AbiJJRXE (ORCPT ); Mon, 10 Oct 2022 13:23:04 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EADC34E427 for ; Mon, 10 Oct 2022 10:22:56 -0700 (PDT) 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 1E63860FBD for ; Mon, 10 Oct 2022 17:22:55 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 68665C433D6; Mon, 10 Oct 2022 17:22:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1665422574; bh=sTmASzYKfJzVNadyE54t+nuZVthL8wB7zBryW4ZrKDc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=IcariJu3eA4iPPpWNv2HLkgAso3MRgC43VnFbE18E1PVVLa/75R3fys+BoSOdvjb0 wDH06hl+SEQBKbkgTJ4Hc4JMM9W2aa9TBT+m4bdMXKbgzFelZ9EB97AH5DskcesW81 Np7GpyzFlxTB/P8OLPDBUUCVyv8zwgwKKYd2C8tmtod6M6nOIfm1MIQ8tgijgpwU0l uk7LgkeoT5lVlUZyztdgzHszltAeT68Etss+UeoLJwBAXx9VELHUmiUBpa8PuR2CZO dtqpfIDY30Plukh80T7QRBOKBCgQHZhD+CF3t+ZBMpJKROlKAzhOHhCdxQA8SOfrBH 4RAuUUF+/9OHg== Date: Mon, 10 Oct 2022 10:22:52 -0700 From: Jaegeuk Kim To: Chao Yu Cc: linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: Re: [PATCH] f2fs: fix compile warning Message-ID: References: <20221006151428.57561-1-chao@kernel.org> <6d45ea3a-5a71-b760-b60d-9e3e7dda3be4@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6d45ea3a-5a71-b760-b60d-9e3e7dda3be4@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/08, Chao Yu wrote: > On 2022/10/8 3:53, Jaegeuk Kim wrote: > > Merged into the original patch. > > Thanks, so it looks it's not too later to update commit id of original > patch since it's close to the end of merge window. I put this in the next pull request. > > Thanks, > > > > > On 10/06, Chao Yu wrote: > > > fs/f2fs/super.c:3886:6: warning: no previous prototype for 'f2fs_record_stop_reason' [-Wmissing-prototypes] > > > > > > Signed-off-by: Chao Yu > > > --- > > > fs/f2fs/super.c | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c > > > index fad333881ea2..2908d41ed462 100644 > > > --- a/fs/f2fs/super.c > > > +++ b/fs/f2fs/super.c > > > @@ -3884,7 +3884,7 @@ static void save_stop_reason(struct f2fs_sb_info *sbi, unsigned char reason) > > > spin_unlock(&sbi->error_lock); > > > } > > > -void f2fs_record_stop_reason(struct f2fs_sb_info *sbi) > > > +static void f2fs_record_stop_reason(struct f2fs_sb_info *sbi) > > > { > > > struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi); > > > int err; > > > -- > > > 2.36.1