mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-17 10:26:09 +00:00
misc: cxl: use mmgrab
Mmgrab was introduced in commit f1f1007644ff ("mm: add new mmgrab() helper") and most of the kernel was updated to use it. Update a remaining file. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) <smpl> @@ expression e; @@ - atomic_inc(&e->mm_count); + mmgrab(e); </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr> Acked-by: Andrew Donnellan <ajd@linux.ibm.com> Link: https://lore.kernel.org/r/1577634178-22530-2-git-send-email-Julia.Lawall@inria.fr Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
191941692a
commit
e10e024643
@ -352,7 +352,7 @@ void cxl_context_free(struct cxl_context *ctx)
|
||||
void cxl_context_mm_count_get(struct cxl_context *ctx)
|
||||
{
|
||||
if (ctx->mm)
|
||||
atomic_inc(&ctx->mm->mm_count);
|
||||
mmgrab(ctx->mm);
|
||||
}
|
||||
|
||||
void cxl_context_mm_count_put(struct cxl_context *ctx)
|
||||
|
Loading…
x
Reference in New Issue
Block a user