linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] xarray: Add a BUG_ON() to ensure caller is not sibling
@ 2025-05-28 11:31 Dev Jain
  2025-05-28 17:12 ` Zi Yan
  0 siblings, 1 reply; 14+ messages in thread
From: Dev Jain @ 2025-05-28 11:31 UTC (permalink / raw)
  To: akpm, willy
  Cc: linux-fsdevel, linux-mm, linux-kernel, david, anshuman.khandual,
	ryan.roberts, Dev Jain

Suppose xas is pointing somewhere near the end of the multi-entry batch.
Then it may happen that the computed slot already falls beyond the batch,
thus breaking the loop due to !xa_is_sibling(), and computing the wrong
order. Thus ensure that the caller is aware of this by triggering a BUG
when the entry is a sibling entry.

This patch is motivated by code inspection and not a real bug report.

Signed-off-by: Dev Jain <dev.jain@arm.com>
---
The patch applies on 6.15 kernel.

 lib/xarray.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/xarray.c b/lib/xarray.c
index 9644b18af18d..0f699766c24f 100644
--- a/lib/xarray.c
+++ b/lib/xarray.c
@@ -1917,6 +1917,8 @@ int xas_get_order(struct xa_state *xas)
 	if (!xas->xa_node)
 		return 0;
 
+	XA_NODE_BUG_ON(xas->xa_node, xa_is_sibling(xa_entry(xas->xa,
+		       xas->xa_node, xas->xa_offset)));
 	for (;;) {
 		unsigned int slot = xas->xa_offset + (1 << order);
 
-- 
2.30.2



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

end of thread, other threads:[~2025-06-03 14:08 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-28 11:31 [PATCH] xarray: Add a BUG_ON() to ensure caller is not sibling Dev Jain
2025-05-28 17:12 ` Zi Yan
2025-05-29  3:17   ` Dev Jain
2025-05-29 22:47     ` Zi Yan
2025-05-29 23:04       ` Zi Yan
2025-05-30  3:44       ` Dev Jain
2025-06-02 15:03         ` Zi Yan
2025-06-03  5:23           ` Dev Jain
2025-06-03  7:58             ` David Hildenbrand
2025-06-03 12:17               ` Zi Yan
2025-06-03 12:59                 ` Dev Jain
2025-06-03 13:57                   ` Zi Yan
2025-06-03 14:07                     ` Dev Jain
2025-06-02  5:44       ` Dev Jain

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).