]> Git Repo - linux.git/commitdiff
XArray: Update the LRU list in xas_split()
authorMatthew Wilcox (Oracle) <[email protected]>
Thu, 31 Mar 2022 12:27:09 +0000 (08:27 -0400)
committerMatthew Wilcox (Oracle) <[email protected]>
Thu, 31 Mar 2022 12:52:57 +0000 (08:52 -0400)
When splitting a value entry, we may need to add the new nodes to the LRU
list and remove the parent node from the LRU list.  The WARN_ON checks
in shadow_lru_isolate() catch this oversight.  This bug was latent
until we stopped splitting folios in shrink_page_list() with commit
820c4e2e6f51 ("mm/vmscan: Free non-shmem folios without splitting them").
That allows the creation of large shadow entries, and subsequently when
trying to page in a small page, we will split the large shadow entry
in __filemap_add_folio().

Fixes: 8fc75643c5e1 ("XArray: add xas_split")
Reported-by: Hugh Dickins <[email protected]>
Signed-off-by: Matthew Wilcox (Oracle) <[email protected]>
lib/xarray.c

index 757644617b9b8ff9ebad57508c3fca774ee51657..88ca87435e3dad27eaa75aafdee37880a2397572 100644 (file)
@@ -1081,6 +1081,7 @@ void xas_split(struct xa_state *xas, void *entry, unsigned int order)
                                        xa_mk_node(child));
                        if (xa_is_value(curr))
                                values--;
+                       xas_update(xas, child);
                } else {
                        unsigned int canon = offset - xas->xa_sibs;
 
@@ -1095,6 +1096,7 @@ void xas_split(struct xa_state *xas, void *entry, unsigned int order)
        } while (offset-- > xas->xa_offset);
 
        node->nr_values += values;
+       xas_update(xas, node);
 }
 EXPORT_SYMBOL_GPL(xas_split);
 #endif
This page took 0.057065 seconds and 4 git commands to generate.