diff options
author | Christoph Hellwig <hch@lst.de> | 2020-06-17 09:37:55 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-06-18 20:14:40 +0200 |
commit | 25f12ae45fc1931a1dce3cc59f9989a9d87834b0 (patch) | |
tree | c89ffb14ca4cbe9afbf312be9e983377c6de5f35 /arch/powerpc/include/asm/sections.h | |
parent | maccess: rename probe_user_{read,write} to copy_{from,to}_user_nofault (diff) | |
download | linux-25f12ae45fc1931a1dce3cc59f9989a9d87834b0.tar.xz linux-25f12ae45fc1931a1dce3cc59f9989a9d87834b0.zip |
maccess: rename probe_kernel_address to get_kernel_nofault
Better describe what this helper does, and match the naming of
copy_from_kernel_nofault.
Also switch the argument order around, so that it acts and looks
like get_user().
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/powerpc/include/asm/sections.h')
-rw-r--r-- | arch/powerpc/include/asm/sections.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/sections.h b/arch/powerpc/include/asm/sections.h index d19871763ed4..bd311616fca8 100644 --- a/arch/powerpc/include/asm/sections.h +++ b/arch/powerpc/include/asm/sections.h @@ -85,7 +85,7 @@ static inline void *dereference_function_descriptor(void *ptr) struct ppc64_opd_entry *desc = ptr; void *p; - if (!probe_kernel_address(&desc->funcaddr, p)) + if (!get_kernel_nofault(p, &desc->funcaddr)) ptr = p; return ptr; } |