Commit 97f13010 authored by Nicholas Piggin's avatar Nicholas Piggin Committed by Arnd Bergmann

microblaze: use asm-generic/mmu_context.h for no-op implementations

Wire asm-generic/mmu_context.h to provide generic empty hooks for arch
code simplification.
Signed-off-by: default avatarNicholas Piggin <npiggin@gmail.com>
Acked-by: default avatarMichal Simek <monstr@monstr.eu>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 2fd171be
...@@ -33,10 +33,6 @@ ...@@ -33,10 +33,6 @@
to represent all kernel pages as shared among all contexts. to represent all kernel pages as shared among all contexts.
*/ */
static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
{
}
# define NO_CONTEXT 256 # define NO_CONTEXT 256
# define LAST_CONTEXT 255 # define LAST_CONTEXT 255
# define FIRST_CONTEXT 1 # define FIRST_CONTEXT 1
...@@ -105,6 +101,7 @@ static inline void get_mmu_context(struct mm_struct *mm) ...@@ -105,6 +101,7 @@ static inline void get_mmu_context(struct mm_struct *mm)
/* /*
* We're finished using the context for an address space. * We're finished using the context for an address space.
*/ */
#define destroy_context destroy_context
static inline void destroy_context(struct mm_struct *mm) static inline void destroy_context(struct mm_struct *mm)
{ {
if (mm->context != NO_CONTEXT) { if (mm->context != NO_CONTEXT) {
...@@ -126,6 +123,7 @@ static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, ...@@ -126,6 +123,7 @@ static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
* After we have set current->mm to a new value, this activates * After we have set current->mm to a new value, this activates
* the context for the new mm so we see the new mappings. * the context for the new mm so we see the new mappings.
*/ */
#define activate_mm activate_mm
static inline void activate_mm(struct mm_struct *active_mm, static inline void activate_mm(struct mm_struct *active_mm,
struct mm_struct *mm) struct mm_struct *mm)
{ {
...@@ -136,5 +134,7 @@ static inline void activate_mm(struct mm_struct *active_mm, ...@@ -136,5 +134,7 @@ static inline void activate_mm(struct mm_struct *active_mm,
extern void mmu_context_init(void); extern void mmu_context_init(void);
#include <asm-generic/mmu_context.h>
# endif /* __KERNEL__ */ # endif /* __KERNEL__ */
#endif /* _ASM_MICROBLAZE_MMU_CONTEXT_H */ #endif /* _ASM_MICROBLAZE_MMU_CONTEXT_H */
...@@ -122,9 +122,6 @@ unsigned long get_wchan(struct task_struct *p); ...@@ -122,9 +122,6 @@ unsigned long get_wchan(struct task_struct *p);
# define KSTK_EIP(task) (task_pc(task)) # define KSTK_EIP(task) (task_pc(task))
# define KSTK_ESP(task) (task_sp(task)) # define KSTK_ESP(task) (task_sp(task))
/* FIXME */
# define deactivate_mm(tsk, mm) do { } while (0)
# define STACK_TOP TASK_SIZE # define STACK_TOP TASK_SIZE
# define STACK_TOP_MAX STACK_TOP # define STACK_TOP_MAX STACK_TOP
......
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