Lines Matching refs:oldmm
66 int ldt_dup_context(struct mm_struct *oldmm, struct mm_struct *mm);
71 static inline int ldt_dup_context(struct mm_struct *oldmm,
150 static inline void arch_dup_pkeys(struct mm_struct *oldmm,
157 /* Duplicate the oldmm pkey state in mm: */
158 mm->context.pkey_allocation_map = oldmm->context.pkey_allocation_map;
159 mm->context.execute_only_pkey = oldmm->context.execute_only_pkey;
163 static inline int arch_dup_mmap(struct mm_struct *oldmm, struct mm_struct *mm)
165 arch_dup_pkeys(oldmm, mm);
166 paravirt_arch_dup_mmap(oldmm, mm);
167 return ldt_dup_context(oldmm, mm);