mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-07 07:38:04 +02:00
drm: Fix 32-bit drmSyncobjWait.
Otherwise we get an EFAULT, at least on a 64-bit kernel.
Fixes: 2048a9e7 "drm: add drmSyncobjWait wrapper"
Reviewed-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
9e34ad590e
commit
b1e63d9ee6
1 changed files with 1 additions and 1 deletions
|
|
@ -4271,7 +4271,7 @@ int drmSyncobjWait(int fd, uint32_t *handles, unsigned num_handles,
|
|||
int ret;
|
||||
|
||||
memclear(args);
|
||||
args.handles = (intptr_t)handles;
|
||||
args.handles = (uintptr_t)handles;
|
||||
args.timeout_nsec = timeout_nsec;
|
||||
args.count_handles = num_handles;
|
||||
args.flags = flags;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue