]> Git Repo - J-linux.git/blob - arch/powerpc/mm/maccess.c
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / arch / powerpc / mm / maccess.c
1 // SPDX-License-Identifier: GPL-2.0-only
2
3 #include <linux/uaccess.h>
4 #include <linux/kernel.h>
5
6 #include <asm/disassemble.h>
7 #include <asm/inst.h>
8 #include <asm/ppc-opcode.h>
9
10 bool copy_from_kernel_nofault_allowed(const void *unsafe_src, size_t size)
11 {
12         return is_kernel_addr((unsigned long)unsafe_src);
13 }
This page took 0.026518 seconds and 4 git commands to generate.