misc: cxl: use mmgrab
authorJulia Lawall <Julia.Lawall@inria.fr>
Sun, 29 Dec 2019 15:42:55 +0000 (16:42 +0100)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 16 Jan 2020 04:59:36 +0000 (14:59 +1000)
commit30e813cf46ccaeea6508607632e49b4a1d743d2a
tree7785c4c388f66cd7f41ecfdaecc639bbe225aa7e
parentc55d7b5e64265fdca45c85b639013e770bde2d0e
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>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/1577634178-22530-2-git-send-email-Julia.Lawall@inria.fr
drivers/misc/cxl/context.c