param_key: fix container of when no struct member is referenced
[smatch.git] / validation / address_space.c
bloba0c8bf5d18e1d788d3dabbcc2568c4150f2ba11a
1 #define __user __attribute__((address_space(1)))
3 extern int poke_memory(void *addr);
5 static int sys_do_stuff(void __user *user_addr)
7 return poke_memory(user_addr);
9 /*
10 * check-name: address_space attribute
12 * check-error-start
13 address_space.c:7:28: warning: incorrect type in argument 1 (different address spaces)
14 address_space.c:7:28: expected void *addr
15 address_space.c:7:28: got void <asn:1> *user_addr
16 * check-error-end