You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kernfs_memcg: respect max_pages even when overshot
Using found_count == max_pages as the loop break condition can fail, if
we hit the "inode_path(inode) is None" case on line 238 when found_count
== max_pages. Use a >= comparison so that if we've overshot, we still
break out of the loop.
This fixes uncommon issues where the test framework spends a long time
dumping pages.
Signed-off-by: Stephen Brennan <[email protected]>
0 commit comments