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 3ED67EB64D7 for ; Tue, 20 Jun 2023 06:21:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231135AbjFTGVM (ORCPT ); Tue, 20 Jun 2023 02:21:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39290 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229519AbjFTGVJ (ORCPT ); Tue, 20 Jun 2023 02:21:09 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 049A8C6 for ; Mon, 19 Jun 2023 23:21:09 -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 8912C60C55 for ; Tue, 20 Jun 2023 06:21:08 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C6E14C433C0; Tue, 20 Jun 2023 06:21:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1687242067; bh=sEap7AtmGyj6ny2xcB77NlrkCp0q4sTLn1Jg45n5M8k=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=hHlr6iiLgaTzT0h0qDFm0ofeichsRQ137PSvtADwNRjz4eHx+fCOYy3UJgHccElyK lrnuEpGz6mRdu4zbhNYI9QZyaAtIqKRyd2c6opwWFBm9WSrVBe6TlXZunw2+9B3A1K maYU3VLS5r41tNexlaj/K/2qJzZr/2et2c3b7IE0Pq6yaXnj7lswBDhQf3Dz2vts0i zKOy1kXF/Ge11JJwtMCIDUI8ZZn9EXPnF4uaELh2H0Oz58mJmkxXwfgF7vuOp86DFn D25m2RmvmcolsE/rOTtl/pkfg/ENOXnIdfro8cX7ofz4rXWi6L4hksuCeF5S/FHfE6 yEMAwc4Xf8Mxg== Date: Mon, 19 Jun 2023 23:21:06 -0700 From: Jaegeuk Kim To: Chao Yu Cc: Yangtao Li , linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: Re: [PATCH] f2fs: no need test opt for f2fs_issue_flush Message-ID: References: <20230425165857.29175-1-frank.li@vivo.com> <5409930b-4379-b279-886b-a05149436a68@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5409930b-4379-b279-886b-a05149436a68@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/19, Chao Yu wrote: > On 2023/4/26 0:58, Yangtao Li wrote: > > This information can now be obtained from the mount, and there isi > > no need to print it out every time the trace event is triggered. > > It makes sense. > > Jaegeuk, is it intentional to print mount option in f2fs_issue_flush > tracepoint? I don't remember tho, do we have a strong reason to change the tracepoint? > > Thanks,