I would suggest a slight modification: make "max_mapped" grow as the
priority goes up.
Right now max_mapped is fixed at "nr_pages*10".
You could have something like
max_mapped = nr_pages * 60 / priority;
instead, which might also alleviate the problem with not even bothering to
scan much of the inactive list simply because 99% of all pages are mapped.
That way you don't waste time on looking at the rest of the inactive list
until you _need_ to.
Linus
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/