From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 DECBA3EBF13 for ; Wed, 18 Feb 2026 05:53:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771393988; cv=none; b=A0I9P8BXfkTNbFqLWVDIFpWjiluJnjUaSfOLsydtrsFz8P8r7JDSuPKvk+2g60Jj64uMDRoUJqTow2bGhELO05VPxvtv5SXulZ9tHtyBT3nvWf3xKDVeS5MOhiImO2/1Z7xtJDq09F4TtOgah7k59jbowhmlxrJ90lqK2+F8mGA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771393988; c=relaxed/simple; bh=sngeR8iI5jtvf064ydXaP74W3c5ikxxSxDbWXURMZ54=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=MqEB3j8Q4YcT9AfTf0wypmc41U4kVkG5tlpVSQMkrwJj9847Iht3zFiDIDTMBt0OMapFbk1M4mybwb4Wm08j7GwjI/ao80jHbQt4L++AurCSrYH4hSl1S14SshNumySBkQKHR/KzYD+3YC2lkPXvBUjY22RFnxPloVrVcKHknik= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=bombadil.srs.infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=kQFO+eC3; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=bombadil.srs.infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="kQFO+eC3" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=In-Reply-To:Content-Type:MIME-Version :References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=MNnXWDhKb8d+tS/UibgdbnQxkDDi1/AwV3YN8xf2J54=; b=kQFO+eC3EE1gQD/OBVCaIZ+mtS sIAqXYaxmW3lRQAEW44o92TyBJEbgtZtPUACdTmEUe/9LzGqambku/54PHJN/viS0UiGexxsSPiaC 4LYAH0TCUOO1ykO6yeu2zvLL4wjPcIGKeZtm4w64K40MPQy2sna7qZtA0N4HBs1I6563bZRg+204c yQfJV4lUguQ7vo6bReFlzblyVxA+v3J0caJ/63unvTO3W5EKaIlz84GoEGx2ipYV17svTrlzaaVec syGMkzo+NHtZjG+x7oyLq7aIukcA8OdLL22MS7qiVENXxqO3h6XYj+PE/cn8DmN46nyJb1oiZ62Ns YcH0Qk0A==; Received: from hch by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1vsaUk-00000009Kpv-0rIb; Wed, 18 Feb 2026 05:53:06 +0000 Date: Tue, 17 Feb 2026 21:53:06 -0800 From: Christoph Hellwig To: "Nirjhar Roy (IBM)" Cc: djwong@kernel.org, hch@infradead.org, cem@kernel.org, linux-xfs@vger.kernel.org, ritesh.list@gmail.com, ojaswin@linux.ibm.com Subject: Re: [PATCH v1 1/4] xfs: Fix xfs_last_rt_bmblock() Message-ID: References: <8b93afb5feaef3fef206c5e4a6a5f83a6d63b53b.1770904484.git.nirjhar.roy.lists@gmail.com> Precedence: bulk X-Mailing-List: linux-xfs@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8b93afb5feaef3fef206c5e4a6a5f83a6d63b53b.1770904484.git.nirjhar.roy.lists@gmail.com> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html On Thu, Feb 12, 2026 at 07:31:44PM +0530, Nirjhar Roy (IBM) wrote: > Reproduce: > $ mkfs.xfs -m metadir=0 -r rtdev=/dev/loop1 /dev/loop0 \ > -r rgsize=32768b,size=32769b -f > $ mount -o rtdev=/dev/loop1 /dev/loop0 /mnt/scratch > $ xfs_growfs -R $(( 32769 + 1 )) /mnt/scratch > $ xfs_info /mnt/scratch | grep rtextents > $ # We can see that rtextents hasn't changed Please wire this up in xfstests. Otherwise looks good: Reviewed-by: Christoph Hellwig