| 
									
										
										
										
											2008-07-17 21:55:51 -07:00
										 |  |  | #ifndef __SPARC_MMU_CONTEXT_H
 | 
					
						
							|  |  |  | #define __SPARC_MMU_CONTEXT_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __ASSEMBLY__
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm-generic/mm_hooks.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-26 11:02:24 +00:00
										 |  |  | /* Initialize a new mmu context.  This is invoked when a new
 | 
					
						
							| 
									
										
										
										
											2008-07-17 21:55:51 -07:00
										 |  |  |  * address space instance (unique or shared) is instantiated. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-07-26 11:02:24 +00:00
										 |  |  | int init_new_context(struct task_struct *tsk, struct mm_struct *mm); | 
					
						
							| 
									
										
										
										
											2008-07-17 21:55:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-26 11:02:24 +00:00
										 |  |  | /* Destroy a dead context.  This occurs when mmput drops the
 | 
					
						
							| 
									
										
										
										
											2008-07-17 21:55:51 -07:00
										 |  |  |  * mm_users count to zero, the mmaps have been released, and | 
					
						
							|  |  |  |  * all the page tables have been flushed.  Our job is to destroy | 
					
						
							|  |  |  |  * any remaining processor-specific state. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-05-13 10:30:54 +02:00
										 |  |  | void destroy_context(struct mm_struct *mm); | 
					
						
							| 
									
										
										
										
											2008-07-17 21:55:51 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Switch the current MM context. */ | 
					
						
							| 
									
										
										
										
											2012-05-12 08:04:11 +00:00
										 |  |  | void switch_mm(struct mm_struct *old_mm, struct mm_struct *mm, | 
					
						
							|  |  |  | 	       struct task_struct *tsk); | 
					
						
							| 
									
										
										
										
											2008-07-17 21:55:51 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define deactivate_mm(tsk,mm)	do { } while (0)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Activate a new MM instance for the current task. */ | 
					
						
							|  |  |  | #define activate_mm(active_mm, mm) switch_mm((active_mm), (mm), NULL)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* !(__ASSEMBLY__) */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* !(__SPARC_MMU_CONTEXT_H) */
 |