Commit 49883224 authored by Chris Zankel's avatar Chris Zankel

[XTENSA] Fix argument list for pgd_ctor constructor.

The argument list  for ctor function element in the
kmem_cache structure has changed.
Signed-off-by: default avatarChris Zankel <chris@zankel.net>
parent b26d0ab0
......@@ -309,7 +309,7 @@ void show_mem(void)
struct kmem_cache *pgtable_cache __read_mostly;
static void pgd_ctor(void *addr, struct kmem_cache *cache, unsigned long flags)
static void pgd_ctor(struct kmem_cache *cache, void* addr)
{
pte_t* ptep = (pte_t*)addr;
int i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment