blob: d31a9ea6bcc24e47a11b5f9423958b95fc7a1f5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef __SPARC_MMU_CONTEXT_H
#define __SPARC_MMU_CONTEXT_H
#include <asm/btfixup.h>
/* For now I still leave the context handling in the
* switch_to() macro, I'll do it right soon enough.
*/
#define get_mmu_context(x) do { } while (0)
/* Initialize the context related info for a new mm_struct
* instance.
*/
BTFIXUPDEF_CALL(void, init_new_context, struct mm_struct *)
#define init_new_context(mm) BTFIXUP_CALL(init_new_context)(mm)
/* Destroy context related info for an mm_struct that is about
* to be put to rest.
*/
BTFIXUPDEF_CALL(void, destroy_context, struct mm_struct *)
#define destroy_context(mm) BTFIXUP_CALL(destroy_context)(mm)
/* This need not do anything on Sparc32. The switch happens
* properly later as a side effect of calling flush_thread.
*/
#define activate_context(tsk) do { } while(0)
#endif /* !(__SPARC_MMU_CONTEXT_H) */
|