Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2f569afd authored by Martin Schwidefsky's avatar Martin Schwidefsky Committed by Linus Torvalds
Browse files

CONFIG_HIGHPTE vs. sub-page page tables.



Background: I've implemented 1K/2K page tables for s390.  These sub-page
page tables are required to properly support the s390 virtualization
instruction with KVM.  The SIE instruction requires that the page tables
have 256 page table entries (pte) followed by 256 page status table entries
(pgste).  The pgstes are only required if the process is using the SIE
instruction.  The pgstes are updated by the hardware and by the hypervisor
for a number of reasons, one of them is dirty and reference bit tracking.
To avoid wasting memory the standard pte table allocation should return
1K/2K (31/64 bit) and 2K/4K if the process is using SIE.

Problem: Page size on s390 is 4K, page table size is 1K or 2K.  That means
the s390 version for pte_alloc_one cannot return a pointer to a struct
page.  Trouble is that with the CONFIG_HIGHPTE feature on x86 pte_alloc_one
cannot return a pointer to a pte either, since that would require more than
32 bit for the return value of pte_alloc_one (and the pte * would not be
accessible since its not kmapped).

Solution: The only solution I found to this dilemma is a new typedef: a
pgtable_t.  For s390 pgtable_t will be a (pte *) - to be introduced with a
later patch.  For everybody else it will be a (struct page *).  The
additional problem with the initialization of the ptl lock and the
NR_PAGETABLE accounting is solved with a constructor pgtable_page_ctor and
a destructor pgtable_page_dtor.  The page table allocation and free
functions need to call these two whenever a page table page is allocated or
freed.  pmd_populate will get a pgtable_t instead of a struct page pointer.
 To get the pgtable_t back from a pmd entry that has been installed with
pmd_populate a new function pmd_pgtable is added.  It replaces the pmd_page
call in free_pte_range and apply_to_pte_range.

Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 13214adf
Loading
Loading
Loading
Loading
+5 −3
Original line number Original line Diff line number Diff line
@@ -28,7 +28,7 @@ pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
	return pte;
	return pte;
}
}


struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address)
pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
{
{
	struct page *page;
	struct page *page;


@@ -37,9 +37,11 @@ struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address)
#else
#else
	page = alloc_pages(GFP_KERNEL|__GFP_REPEAT, 0);
	page = alloc_pages(GFP_KERNEL|__GFP_REPEAT, 0);
#endif
#endif
	if (page)
	if (page) {
		clear_highpage(page);
		clear_highpage(page);
		pgtable_page_ctor(page);
		flush_dcache_page(page);
		flush_dcache_page(page);
	}
	return page;
	return page;
}
}


+8 −6
Original line number Original line Diff line number Diff line
@@ -107,19 +107,20 @@ __init_refok pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long add
	return pte;
	return pte;
}
}


struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address)
pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
{
{
	struct page *ptepage;
	struct page *ptepage;


#ifdef CONFIG_HIGHPTE
#ifdef CONFIG_HIGHPTE
	gfp_t flags = GFP_KERNEL | __GFP_HIGHMEM | __GFP_REPEAT;
	gfp_t flags = GFP_KERNEL | __GFP_HIGHMEM | __GFP_REPEAT | __GFP_ZERO;
#else
#else
	gfp_t flags = GFP_KERNEL | __GFP_REPEAT;
	gfp_t flags = GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO;
#endif
#endif


	ptepage = alloc_pages(flags, 0);
	ptepage = alloc_pages(flags, 0);
	if (ptepage)
	if (!ptepage)
		clear_highpage(ptepage);
		return NULL;
	pgtable_page_ctor(ptepage);
	return ptepage;
	return ptepage;
}
}


@@ -131,11 +132,12 @@ void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
	free_page((unsigned long)pte);
	free_page((unsigned long)pte);
}
}


void pte_free(struct mm_struct *mm, struct page *ptepage)
void pte_free(struct mm_struct *mm, pgtable_t ptepage)
{
{
#ifdef CONFIG_SMP
#ifdef CONFIG_SMP
	hash_page_sync();
	hash_page_sync();
#endif
#endif
	pgtable_page_dtor(ptepage);
	__free_page(ptepage);
	__free_page(ptepage);
}
}


+6 −3
Original line number Original line Diff line number Diff line
@@ -95,7 +95,7 @@ __init_refok pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long add
	return pte;
	return pte;
}
}


struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address)
pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
{
{
	struct page *ptepage;
	struct page *ptepage;


@@ -106,8 +106,10 @@ struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address)
#endif
#endif


	ptepage = alloc_pages(flags, 0);
	ptepage = alloc_pages(flags, 0);
	if (ptepage)
	if (ptepage) {
		clear_highpage(ptepage);
		clear_highpage(ptepage);
		pgtable_page_ctor(ptepage);
	}
	return ptepage;
	return ptepage;
}
}


@@ -119,11 +121,12 @@ void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
	free_page((unsigned long)pte);
	free_page((unsigned long)pte);
}
}


void pte_free(struct mm_struct *mm, struct page *ptepage)
void pte_free(struct mm_struct *mm, pgtable_t ptepage)
{
{
#ifdef CONFIG_SMP
#ifdef CONFIG_SMP
	hash_page_sync();
	hash_page_sync();
#endif
#endif
	pgtable_page_dtor(ptepage);
	__free_page(ptepage);
	__free_page(ptepage);
}
}


+2 −0
Original line number Original line Diff line number Diff line
@@ -78,6 +78,7 @@ unsigned long *page_table_alloc(int noexec)
		clear_table(table, _PAGE_TYPE_EMPTY, PAGE_SIZE);
		clear_table(table, _PAGE_TYPE_EMPTY, PAGE_SIZE);
		page->index = (addr_t) table;
		page->index = (addr_t) table;
	}
	}
	pgtable_page_ctor(page);
	table = (unsigned long *) page_to_phys(page);
	table = (unsigned long *) page_to_phys(page);
	clear_table(table, _PAGE_TYPE_EMPTY, PAGE_SIZE);
	clear_table(table, _PAGE_TYPE_EMPTY, PAGE_SIZE);
	return table;
	return table;
@@ -87,6 +88,7 @@ void page_table_free(unsigned long *table)
{
{
	unsigned long *shadow = get_shadow_pte(table);
	unsigned long *shadow = get_shadow_pte(table);


	pgtable_page_dtor(virt_to_page(table));
	if (shadow)
	if (shadow)
		free_page((unsigned long) shadow);
		free_page((unsigned long) shadow);
	free_page((unsigned long) table);
	free_page((unsigned long) table);
+7 −3
Original line number Original line Diff line number Diff line
@@ -489,14 +489,17 @@ srmmu_pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
	return (pte_t *)srmmu_get_nocache(PTE_SIZE, PTE_SIZE);
	return (pte_t *)srmmu_get_nocache(PTE_SIZE, PTE_SIZE);
}
}


static struct page *
static pgtable_t
srmmu_pte_alloc_one(struct mm_struct *mm, unsigned long address)
srmmu_pte_alloc_one(struct mm_struct *mm, unsigned long address)
{
{
	unsigned long pte;
	unsigned long pte;
	struct page *page;


	if ((pte = (unsigned long)srmmu_pte_alloc_one_kernel(mm, address)) == 0)
	if ((pte = (unsigned long)srmmu_pte_alloc_one_kernel(mm, address)) == 0)
		return NULL;
		return NULL;
	return pfn_to_page( __nocache_pa(pte) >> PAGE_SHIFT );
	page = pfn_to_page( __nocache_pa(pte) >> PAGE_SHIFT );
	pgtable_page_ctor(page);
	return page;
}
}


static void srmmu_free_pte_fast(pte_t *pte)
static void srmmu_free_pte_fast(pte_t *pte)
@@ -504,10 +507,11 @@ static void srmmu_free_pte_fast(pte_t *pte)
	srmmu_free_nocache((unsigned long)pte, PTE_SIZE);
	srmmu_free_nocache((unsigned long)pte, PTE_SIZE);
}
}


static void srmmu_pte_free(struct page *pte)
static void srmmu_pte_free(pgtable_t pte)
{
{
	unsigned long p;
	unsigned long p;


	pgtable_page_dtor(pte);
	p = (unsigned long)page_address(pte);	/* Cached address (for test) */
	p = (unsigned long)page_address(pte);	/* Cached address (for test) */
	if (p == 0)
	if (p == 0)
		BUG();
		BUG();
Loading