]> git.baikalelectronics.ru Git - kernel.git/commit
powerpc/uaccess: Remove __get/put_user_inatomic()
authorChristophe Leroy <christophe.leroy@csgroup.eu>
Wed, 10 Mar 2021 17:46:43 +0000 (17:46 +0000)
committerMichael Ellerman <mpe@ellerman.id.au>
Sat, 3 Apr 2021 10:21:41 +0000 (21:21 +1100)
commite946933d06a249fbc3cac5057a523b6db1021e53
treeee8c7f0017517bfca12565cf5f9269d11d299874
parent427c7456f53692d9f248f518554f9fa7b0db52a3
powerpc/uaccess: Remove __get/put_user_inatomic()

Powerpc is the only architecture having _inatomic variants of
__get_user() and __put_user() accessors. They were introduced
by commit 26470271d135 ("[POWERPC] Add inatomic versions of __get_user
and __put_user").

Those variants expand to the _nosleep macros instead of expanding
to the _nocheck macros. The only difference between the _nocheck
and the _nosleep macros is the call to might_fault().

Since commit cdb0ea7b16b9 ("mm, sched: Allow uaccess in atomic with
pagefault_disable()"), __get/put_user() can be used in atomic parts
of the code, therefore __get/put_user_inatomic() have become useless.

Remove __get_user_inatomic() and __put_user_inatomic().

Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Reviewed-by: Daniel Axtens <dja@axtens.net>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/1e5c895669e8d54a7810b62dc61eb111f33c2c37.1615398265.git.christophe.leroy@csgroup.eu
arch/powerpc/include/asm/uaccess.h
arch/powerpc/kernel/hw_breakpoint_constraints.c
arch/powerpc/kernel/traps.c