aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/address_space.c
blob: 2d06be7dfdd562e0b65eeb403f2518f802b415d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#define __user __attribute__((address_space(1)))

extern int poke_memory(void *addr);

static int sys_do_stuff(void __user *user_addr)
{
	return poke_memory(user_addr);
}
/*
 * check-name: address_space attribute
 *
 * check-error-start
address_space.c:7:21: warning: incorrect type in argument 1 (different address spaces)
address_space.c:7:21:    expected void *addr
address_space.c:7:21:    got void <asn:1>*user_addr
 * check-error-end
 */