mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 01:36:52 +09:00
staging/lustre: Properly cast ll_fid2path argument to __user in ll_dir_ioctl
This makes sparse happier. Signed-off-by: Oleg Drokin <green@linuxhacker.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
61dad0ba9a
commit
7ec89fa54a
@@ -1736,7 +1736,7 @@ out_quotactl:
|
||||
sizeof(struct ioc_changelog));
|
||||
return rc;
|
||||
case OBD_IOC_FID2PATH:
|
||||
return ll_fid2path(inode, (void *)arg);
|
||||
return ll_fid2path(inode, (void __user *)arg);
|
||||
case LL_IOC_HSM_REQUEST: {
|
||||
struct hsm_user_request *hur;
|
||||
ssize_t totalsize;
|
||||
|
||||
Reference in New Issue
Block a user