summaryrefslogtreecommitdiffstats
path: root/arch/loongarch/kernel/access-helper.h
blob: 4a35ca81bd08e6a77ea09c39d269ab5cbd9b6180 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0 */

#include <linux/uaccess.h>

static inline int __get_inst(u32 *i, u32 *p, bool user)
{
	return user ? get_user(*i, (u32 __user *)p) : get_kernel_nofault(*i, p);
}

static inline int __get_addr(unsigned long *a, unsigned long *p, bool user)
{
	return user ? get_user(*a, (unsigned long __user *)p) : get_kernel_nofault(*a, p);
}