mmu_context.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __UM_MMU_CONTEXT_H
  6. #define __UM_MMU_CONTEXT_H
  7. #include <linux/sched.h>
  8. #include <asm/mmu.h>
  9. extern void uml_setup_stubs(struct mm_struct *mm);
  10. /*
  11. * Needed since we do not use the asm-generic/mm_hooks.h:
  12. */
  13. static inline void arch_dup_mmap(struct mm_struct *oldmm, struct mm_struct *mm)
  14. {
  15. uml_setup_stubs(mm);
  16. }
  17. extern void arch_exit_mmap(struct mm_struct *mm);
  18. static inline void arch_unmap(struct mm_struct *mm,
  19. struct vm_area_struct *vma,
  20. unsigned long start, unsigned long end)
  21. {
  22. }
  23. static inline void arch_bprm_mm_init(struct mm_struct *mm,
  24. struct vm_area_struct *vma)
  25. {
  26. }
  27. /*
  28. * end asm-generic/mm_hooks.h functions
  29. */
  30. #define deactivate_mm(tsk,mm) do { } while (0)
  31. extern void force_flush_all(void);
  32. static inline void activate_mm(struct mm_struct *old, struct mm_struct *new)
  33. {
  34. /*
  35. * This is called by fs/exec.c and sys_unshare()
  36. * when the new ->mm is used for the first time.
  37. */
  38. __switch_mm(&new->context.id);
  39. down_write(&new->mmap_sem);
  40. uml_setup_stubs(new);
  41. up_write(&new->mmap_sem);
  42. }
  43. static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
  44. struct task_struct *tsk)
  45. {
  46. unsigned cpu = smp_processor_id();
  47. if(prev != next){
  48. cpumask_clear_cpu(cpu, mm_cpumask(prev));
  49. cpumask_set_cpu(cpu, mm_cpumask(next));
  50. if(next != &init_mm)
  51. __switch_mm(&next->context.id);
  52. }
  53. }
  54. static inline void enter_lazy_tlb(struct mm_struct *mm,
  55. struct task_struct *tsk)
  56. {
  57. }
  58. extern int init_new_context(struct task_struct *task, struct mm_struct *mm);
  59. extern void destroy_context(struct mm_struct *mm);
  60. #endif