From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 233DF2C859 for ; Mon, 18 Aug 2025 11:18:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755515907; cv=none; b=MIJuPL64mSVhjj2kBmeo8UjwkFqg1uP1+83KZr1MFXuHMucLTBYRKI/6KGzBu2rXQRNwFvje/bWyK51UJJTasTHNZxcBmHTC7Swwch8u01ZWE7nrqD1mu9BXwSC/ROX/dbkpZ4/OfQn8EOHtezk7GcB6TXS8/4CXi8/bqMw9hGA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755515907; c=relaxed/simple; bh=bLojLaXjV81gv7NBnDOFNcutOGRmvpE+EA03yiEjUHA=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=IvSfDX0iqvnDsC+R/ZYOHVVL78sihO95pUjD7umTXWBi1/7ED4MTLQ9bd+1NuMAY51Sz3emnjF1bhHHajabFEyW7kyqt3V+lFzIzhsajnF0tgl/NH1JFnUxOK0eMVISig2ctdB8tY6w1mlhEuQd/usIzH0qHgGJUMnFmAgIozsY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Z1DCFqw0; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Z1DCFqw0" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 883A2C4CEEB; Mon, 18 Aug 2025 11:18:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1755515907; bh=bLojLaXjV81gv7NBnDOFNcutOGRmvpE+EA03yiEjUHA=; h=Subject:To:Cc:From:Date:From; b=Z1DCFqw0SsjSPWcm/T23mfyE6CxvWhOtUXFCPV+xI9NMa5SYHIX3bvVRfgU8FWqXx 8DGu2Or40BWV9CghpTh5f5egLCj8VG6VsGKZAfZEIqV3B6uqxfkx66YrU76hcPLlHf dRdg95gBrtWrGEZivGPBs2hBu/YZI3lPD3UkYTWs= Subject: FAILED: patch "[PATCH] ocfs2: reset folio to NULL when get folio fails" failed to apply to 6.12-stable tree To: lizhi.xu@windriver.com,akpm@linux-foundation.org,gechangwei@live.cn,jlbec@evilplan.org,joseph.qi@linux.alibaba.com,junxiao.bi@oracle.com,mark@fasheh.com,piaojun@huawei.com,stable@vger.kernel.org Cc: From: Date: Mon, 18 Aug 2025 13:16:22 +0200 Message-ID: <2025081822-hasty-vineyard-a5ea@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.12-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.12.y git checkout FETCH_HEAD git cherry-pick -x 2ae826799932ff89409f56636ad3c25578fe7cf5 # git commit -s git send-email --to '' --in-reply-to '2025081822-hasty-vineyard-a5ea@gregkh' --subject-prefix 'PATCH 6.12.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From 2ae826799932ff89409f56636ad3c25578fe7cf5 Mon Sep 17 00:00:00 2001 From: Lizhi Xu Date: Mon, 16 Jun 2025 09:31:40 +0800 Subject: [PATCH] ocfs2: reset folio to NULL when get folio fails The reproducer uses FAULT_INJECTION to make memory allocation fail, which causes __filemap_get_folio() to fail, when initializing w_folios[i] in ocfs2_grab_folios_for_write(), it only returns an error code and the value of w_folios[i] is the error code, which causes ocfs2_unlock_and_free_folios() to recycle the invalid w_folios[i] when releasing folios. Link: https://lkml.kernel.org/r/20250616013140.3602219-1-lizhi.xu@windriver.com Reported-by: syzbot+c2ea94ae47cd7e3881ec@syzkaller.appspotmail.com Closes: https://syzkaller.appspot.com/bug?extid=c2ea94ae47cd7e3881ec Signed-off-by: Lizhi Xu Reviewed-by: Joseph Qi Cc: Mark Fasheh Cc: Joel Becker Cc: Junxiao Bi Cc: Changwei Ge Cc: Jun Piao Cc: Signed-off-by: Andrew Morton diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c index 40b6bce12951..89aadc6cdd87 100644 --- a/fs/ocfs2/aops.c +++ b/fs/ocfs2/aops.c @@ -1071,6 +1071,7 @@ static int ocfs2_grab_folios_for_write(struct address_space *mapping, if (IS_ERR(wc->w_folios[i])) { ret = PTR_ERR(wc->w_folios[i]); mlog_errno(ret); + wc->w_folios[i] = NULL; goto out; } }