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 16AC6C433F5 for ; Mon, 25 Apr 2022 16:54:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S243638AbiDYQ54 (ORCPT ); Mon, 25 Apr 2022 12:57:56 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37942 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236016AbiDYQ50 (ORCPT ); Mon, 25 Apr 2022 12:57:26 -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 459743AA7A for ; Mon, 25 Apr 2022 09:54:21 -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 A497D6148F for ; Mon, 25 Apr 2022 16:54:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E0E4DC385A4; Mon, 25 Apr 2022 16:54:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1650905660; bh=LAvXRisArrRdEcB0PKg1yD+9tEfDqEzSgD//WM5MfZI=; h=Date:From:To:Cc:Subject:From; b=OaQIKlE3ZclurMEiaNRU+4W58DXIBbh9proFJJCfC9SknLZMZxCxySZXN2gfMNj65 KYE0BgQqXgAgskJNbUgyrrzrQBRKopXYfgvWyuXCNXyHB34hWboynf1+SsqtR81jhA VETHmfzfHhTkelRjMsSGGtlhnW6YhpaD9m4VnC8lTXVk0VlcUX230WjlFedhjovXKm KOkuR+liHyAhQ+z4cypFnuUEFuXTp6Uqs27AKbB3wy0QeFlLnj+Vb2j9cQKBmX0NJ5 wI/aRatPYgP+s7/zqox0Yimb0TVfbU9a6C9FsNNzH6AqGVQd97ovtC+SwEFo6fijFH 0eNNXHqZQ1XoQ== Date: Mon, 25 Apr 2022 09:54:18 -0700 From: Jaegeuk Kim To: Linus Torvalds Cc: Linux Kernel Mailing List , Linux F2FS Dev Mailing List Subject: [GIT PULL] f2fs fix for 5.18 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, Could you please consider this pull request? Thanks, The following changes since commit ce522ba9ef7e2d9fb22a39eb3371c0c64e2a433e: Linux 5.18-rc2 (2022-04-10 14:21:36 -1000) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git tags/f2fs-fix-5.18 for you to fetch changes up to 4d8ec91208196e0e19195f1e7d6be9de5873f242: f2fs: should not truncate blocks during roll-forward recovery (2022-04-21 18:57:09 -0700) ---------------------------------------------------------------- f2fs-fix-5.18 This includes major bug fixes introduced in 5.18-rc1 and 5.17+. - Remove obsolete whint_mode (5.18-rc1) - Fix IO split issue caused by op_flags change in f2fs (5.18-rc1) - Fix a wrong condition check to detect IO failure loop (5.18-rc1) - Fix wrong data truncation during roll-forward (5.17+) ---------------------------------------------------------------- Jaegeuk Kim (4): f2fs: remove obsolete whint_mode f2fs: keep io_flags to avoid IO split due to different op_flags in two fio holders f2fs: fix wrong condition check when failing metapage read f2fs: should not truncate blocks during roll-forward recovery Documentation/filesystems/f2fs.rst | 70 ---------------------------- fs/f2fs/checkpoint.c | 6 +-- fs/f2fs/data.c | 33 ++++++++----- fs/f2fs/f2fs.h | 9 ---- fs/f2fs/inode.c | 3 +- fs/f2fs/segment.c | 95 -------------------------------------- fs/f2fs/super.c | 32 +------------ 7 files changed, 27 insertions(+), 221 deletions(-)