On Fri, Jul 18, 2025 at 01:13:46AM -0700, Nicolin Chen wrote:
I realized that we can't change the number as it won't reproduce on PAGE_SIZE=4K. So, perhaps it should just SKIP other page sizes than 4K.
Ok, I used this:
+ if (PAGE_SIZE != 4096) + SKIP(return, "Test requires 4k PAGE_SIZE"); +
Thanks, Jason