mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-24 14:54:49 +08:00
staging/lustre: Update user pointers in struct obd_ioctl_data
Make them void __user * instead of char * (or char __user *), void * removes the necessity of explicit casts to proper type where people also need to remember __user qualifiers, so I think it works better here. Signed-off-by: Oleg Drokin <green@linuxhacker.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
33ab3abce7
commit
922cb32ca3
@ -153,9 +153,9 @@ struct obd_ioctl_data {
|
||||
|
||||
/* buffers the kernel will treat as user pointers */
|
||||
__u32 ioc_plen1;
|
||||
char *ioc_pbuf1;
|
||||
void __user *ioc_pbuf1;
|
||||
__u32 ioc_plen2;
|
||||
char *ioc_pbuf2;
|
||||
void __user *ioc_pbuf2;
|
||||
|
||||
/* inline buffers for various arguments */
|
||||
__u32 ioc_inllen1;
|
||||
|
Loading…
Reference in New Issue
Block a user