aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/ext4/ioctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c
index 8f7ea690542..a56796814d6 100644
--- a/fs/ext4/ioctl.c
+++ b/fs/ext4/ioctl.c
@@ -350,7 +350,7 @@ mext_out:
350 return -EOPNOTSUPP; 350 return -EOPNOTSUPP;
351 } 351 }
352 352
353 if (copy_from_user(&range, (struct fstrim_range *)arg, 353 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
354 sizeof(range))) 354 sizeof(range)))
355 return -EFAULT; 355 return -EFAULT;
356 356
@@ -360,7 +360,7 @@ mext_out:
360 if (ret < 0) 360 if (ret < 0)
361 return ret; 361 return ret;
362 362
363 if (copy_to_user((struct fstrim_range *)arg, &range, 363 if (copy_to_user((struct fstrim_range __user *)arg, &range,
364 sizeof(range))) 364 sizeof(range)))
365 return -EFAULT; 365 return -EFAULT;
366 366