Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1715296
| From | Mikko Perttunen <mperttunen@nvidia.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 4/4] drm/tegra: Use u64_to_user_ptr helper |
| Date | 2017-08-18 18:20 +0200 |
| Message-ID | <ufSa6-69c-1@gated-at.bofh.it> (permalink) |
| References | <ufSa6-69c-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Use the u64_to_user_ptr helper macro to cast IOCTL argument u64 values
to user pointers instead of writing out the cast manually.
Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
---
drivers/gpu/drm/tegra/drm.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/tegra/drm.c b/drivers/gpu/drm/tegra/drm.c
index e3331a2bc082..78c98736b0a5 100644
--- a/drivers/gpu/drm/tegra/drm.c
+++ b/drivers/gpu/drm/tegra/drm.c
@@ -389,11 +389,10 @@ int tegra_drm_submit(struct tegra_drm_context *context,
unsigned int num_relocs = args->num_relocs;
unsigned int num_waitchks = args->num_waitchks;
struct drm_tegra_cmdbuf __user *cmdbufs =
- (void __user *)(uintptr_t)args->cmdbufs;
- struct drm_tegra_reloc __user *relocs =
- (void __user *)(uintptr_t)args->relocs;
+ u64_to_user_ptr(args->cmdbufs);
+ struct drm_tegra_reloc __user *relocs = u64_to_user_ptr(args->relocs);
struct drm_tegra_waitchk __user *waitchks =
- (void __user *)(uintptr_t)args->waitchks;
+ u64_to_user_ptr(args->waitchks);
struct drm_tegra_syncpt syncpt;
struct host1x *host1x = dev_get_drvdata(drm->dev->parent);
struct host1x_syncpt *sp;
@@ -520,7 +519,7 @@ int tegra_drm_submit(struct tegra_drm_context *context,
}
}
- if (copy_from_user(&syncpt, (void __user *)(uintptr_t)args->syncpts,
+ if (copy_from_user(&syncpt, u64_to_user_ptr(args->syncpts),
sizeof(syncpt))) {
err = -EFAULT;
goto fail;
--
2.14.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 4/4] drm/tegra: Use u64_to_user_ptr helper Mikko Perttunen <mperttunen@nvidia.com> - 2017-08-18 18:20 +0200
Re: [PATCH 4/4] drm/tegra: Use u64_to_user_ptr helper Dmitry Osipenko <digetx@gmail.com> - 2017-08-19 00:10 +0200
Re: [PATCH 4/4] drm/tegra: Use u64_to_user_ptr helper Mikko Perttunen <cyndis@kapsi.fi> - 2017-08-19 10:10 +0200
csiph-web