The patch titled Subject: mm/fork: clear PASID for new mm has been added to the -mm tree. Its filename is mm-fork-clear-pasid-for-new-mm.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-fork-clear-pasid-for-new-mm.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-fork-clear-pasid-for-new-mm.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Fenghua Yu <fenghua.yu@xxxxxxxxx> Subject: mm/fork: clear PASID for new mm When a new mm is created, its PASID should be cleared, i.e. the PASID is initialized to its init state 0 on both ARM and X86. Link: https://lkml.kernel.org/r/20210302103837.2562625-1-jean-philippe@xxxxxxxxxx Signed-off-by: Fenghua Yu <fenghua.yu@xxxxxxxxx> Signed-off-by: Jean-Philippe Brucker <jean-philippe@xxxxxxxxxx> Reviewed-by: Tony Luck <tony.luck@xxxxxxxxx> Cc: Jacob Pan <jacob.jun.pan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mm_types.h | 1 + kernel/fork.c | 8 ++++++++ 2 files changed, 9 insertions(+) --- a/include/linux/mm_types.h~mm-fork-clear-pasid-for-new-mm +++ a/include/linux/mm_types.h @@ -23,6 +23,7 @@ #endif #define AT_VECTOR_SIZE (2*(AT_VECTOR_SIZE_ARCH + AT_VECTOR_SIZE_BASE + 1)) +#define INIT_PASID 0 struct address_space; struct mem_cgroup; --- a/kernel/fork.c~mm-fork-clear-pasid-for-new-mm +++ a/kernel/fork.c @@ -994,6 +994,13 @@ static void mm_init_owner(struct mm_stru #endif } +static void mm_init_pasid(struct mm_struct *mm) +{ +#ifdef CONFIG_IOMMU_SUPPORT + mm->pasid = INIT_PASID; +#endif +} + static void mm_init_uprobes_state(struct mm_struct *mm) { #ifdef CONFIG_UPROBES @@ -1024,6 +1031,7 @@ static struct mm_struct *mm_init(struct mm_init_cpumask(mm); mm_init_aio(mm); mm_init_owner(mm, p); + mm_init_pasid(mm); RCU_INIT_POINTER(mm->exe_file, NULL); mmu_notifier_subscriptions_init(mm); init_tlb_flush_pending(mm); _ Patches currently in -mm which might be from fenghua.yu@xxxxxxxxx are mm-fork-clear-pasid-for-new-mm.patch