public inbox for patches@lists.linux.dev
 help / color / mirror / Atom feed
From: <gregkh@linuxfoundation.org>
To: 681739313@139.com,djwong@kernel.org,gregkh@linuxfoundation.org,hch@infradead.org,patches@lists.linux.dev,ritesh.list@gmail.com,willy@infradead.org
Cc: <stable-commits@vger.kernel.org>
Subject: Patch "iomap: Fix possible overflow condition in iomap_write_delalloc_scan" has been added to the 6.1-stable tree
Date: Tue, 03 Feb 2026 16:59:08 +0100	[thread overview]
Message-ID: <2026020308-annuity-stimuli-fd4d@gregkh> (raw)
In-Reply-To: <20260123063300.3820420-1-681739313@139.com>


This is a note to let you know that I've just added the patch titled

    iomap: Fix possible overflow condition in iomap_write_delalloc_scan

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     iomap-fix-possible-overflow-condition-in-iomap_write_delalloc_scan.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


From 681739313@139.com Fri Jan 23 07:33:06 2026
From: Rajani Kantha <681739313@139.com>
Date: Fri, 23 Jan 2026 14:33:00 +0800
Subject: iomap: Fix possible overflow condition in iomap_write_delalloc_scan
To: gregkh@linuxfoundation.org, ritesh.list@gmail.com, stable@vger.kernel.org
Cc: djwong@kernel.org, hch@infradead.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, linux-xfs@vger.kernel.org, patches@lists.linux.dev, willy@infradead.org
Message-ID: <20260123063300.3820420-1-681739313@139.com>

From: "Ritesh Harjani (IBM)" <ritesh.list@gmail.com>

[ Upstream commit eee2d2e6ea5550118170dbd5bb1316ceb38455fb ]

folio_next_index() returns an unsigned long value which left shifted
by PAGE_SHIFT could possibly cause an overflow on 32-bit system. Instead
use folio_pos(folio) + folio_size(folio), which does this correctly.

Suggested-by: Matthew Wilcox <willy@infradead.org>
Signed-off-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Rajani Kantha <681739313@139.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 fs/iomap/buffered-io.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/fs/iomap/buffered-io.c
+++ b/fs/iomap/buffered-io.c
@@ -903,7 +903,7 @@ static int iomap_write_delalloc_scan(str
 			 * the end of this data range, not the end of the folio.
 			 */
 			*punch_start_byte = min_t(loff_t, end_byte,
-					folio_next_index(folio) << PAGE_SHIFT);
+					folio_pos(folio) + folio_size(folio));
 		}
 
 		/* move offset to start of next folio in range */


Patches currently in stable-queue which might be from 681739313@139.com are

queue-6.1/iomap-fix-possible-overflow-condition-in-iomap_write_delalloc_scan.patch

      reply	other threads:[~2026-02-03 15:59 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-23  6:33 [PATCH 6.1.y] iomap: Fix possible overflow condition in iomap_write_delalloc_scan Rajani Kantha
2026-02-03 15:59 ` gregkh [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2026020308-annuity-stimuli-fd4d@gregkh \
    --to=gregkh@linuxfoundation.org \
    --cc=681739313@139.com \
    --cc=djwong@kernel.org \
    --cc=hch@infradead.org \
    --cc=patches@lists.linux.dev \
    --cc=ritesh.list@gmail.com \
    --cc=stable-commits@vger.kernel.org \
    --cc=willy@infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox