public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfs: correct calculation for blockcount
@ 2023-08-28  7:24 Shiyang Ruan
  2023-09-08 10:18 ` Shiyang Ruan
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Shiyang Ruan @ 2023-08-28  7:24 UTC (permalink / raw)
  To: linux-xfs

The blockcount, which means length, should be "end + 1 - start".  So,
add the missing "+1" here.

Fixes: 5cf32f63b0f4 ("xfs: fix the calculation for "end" and "length"")
Signed-off-by: Shiyang Ruan <ruansy.fnst@fujitsu.com>
---
 fs/xfs/xfs_notify_failure.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/xfs/xfs_notify_failure.c b/fs/xfs/xfs_notify_failure.c
index 4a9bbd3fe120..459fc8a39635 100644
--- a/fs/xfs/xfs_notify_failure.c
+++ b/fs/xfs/xfs_notify_failure.c
@@ -151,7 +151,7 @@ xfs_dax_notify_ddev_failure(
 		agend = min(be32_to_cpu(agf->agf_length),
 				ri_high.rm_startblock);
 		notify.startblock = ri_low.rm_startblock;
-		notify.blockcount = agend - ri_low.rm_startblock;
+		notify.blockcount = agend + 1 - ri_low.rm_startblock;
 
 		error = xfs_rmap_query_range(cur, &ri_low, &ri_high,
 				xfs_dax_failure_fn, &notify);
-- 
2.41.0


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-09-13 10:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-28  7:24 [PATCH] xfs: correct calculation for blockcount Shiyang Ruan
2023-09-08 10:18 ` Shiyang Ruan
2023-09-08 23:55   ` Darrick J. Wong
2023-09-11 10:47     ` Shiyang Ruan
2023-09-11 10:46 ` [PATCH v2] xfs: correct calculation for agend and blockcount Shiyang Ruan
2023-09-12  1:00   ` Darrick J. Wong
2023-09-13 10:29 ` [PATCH v3] " Shiyang Ruan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox