lkml.org 
[lkml]   [2021]   [Jun]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v4 1/4] lazy tlb: introduce lazy mm refcount helper functions
On Sat,  5 Jun 2021 11:42:13 +1000 Nicholas Piggin <npiggin@gmail.com> wrote:

> Add explicit _lazy_tlb annotated functions for lazy mm refcounting.
> This makes lazy mm references more obvious, and allows explicit
> refcounting to be removed if it is not used.
>
> ...
>
> --- a/kernel/kthread.c
> +++ b/kernel/kthread.c
> @@ -1314,14 +1314,14 @@ void kthread_use_mm(struct mm_struct *mm)
> WARN_ON_ONCE(!(tsk->flags & PF_KTHREAD));
> WARN_ON_ONCE(tsk->mm);
>
> + mmgrab(mm);
> +
> task_lock(tsk);
> /* Hold off tlb flush IPIs while switching mm's */
> local_irq_disable();
> active_mm = tsk->active_mm;
> - if (active_mm != mm) {
> - mmgrab(mm);
> + if (active_mm != mm)
> tsk->active_mm = mm;
> - }

Looks like a functional change. What's happening here?


\
 
 \ /
  Last update: 2021-06-08 01:50    [W:0.116 / U:0.396 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site