mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-05 05:15:23 +02:00

[ Upstream commit2cbade17b1
] The __switch_mm function is defined in the user code, and is called by the kernel code. It should be declared in a shared header. Fixes:4dc706c2f2
("um: take um_mmu.h to asm/mmu.h, clean asm/mmu_context.h a bit") Signed-off-by: Tiwei Bie <tiwei.btw@antgroup.com> Signed-off-by: Richard Weinberger <richard@nod.at> Signed-off-by: Sasha Levin <sashal@kernel.org>
23 lines
509 B
C
23 lines
509 B
C
/*
|
|
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#ifndef __ARCH_UM_MMU_H
|
|
#define __ARCH_UM_MMU_H
|
|
|
|
#include <mm_id.h>
|
|
#include <asm/mm_context.h>
|
|
|
|
typedef struct mm_context {
|
|
struct mm_id id;
|
|
struct uml_arch_mm_context arch;
|
|
struct page *stub_pages[2];
|
|
} mm_context_t;
|
|
|
|
/* Avoid tangled inclusion with asm/ldt.h */
|
|
extern long init_new_ldt(struct mm_context *to_mm, struct mm_context *from_mm);
|
|
extern void free_ldt(struct mm_context *mm);
|
|
|
|
#endif
|