Re: Hugepages demand paging V1 [1/4]: demand paging core

From: William Lee Irwin III
Date: Fri Oct 22 2004 - 05:50:01 EST


On Thu, Oct 21, 2004 at 09:56:27PM -0700, Christoph Lameter wrote:
> +static void scrub_one_pmd(pmd_t * pmd)
> +{
> + struct page *page;
> +
> + if (pmd && !pmd_none(*pmd) && !pmd_huge(*pmd)) {
> + page = pmd_page(*pmd);
> + pmd_clear(pmd);
> + dec_page_state(nr_page_table_pages);
> + page_cache_release(page);
> + }
> +}

It would be nicer to fix the pagetable leak (over the lifetime of a
process) in the core instead of sprinkling hugetlb with this.


-- wli
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/