diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2017-10-03 14:52:27 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2017-10-03 20:41:50 +0100 |
commit | 7fd0cae99630f954cfe0089b4b7e91576a353582 (patch) | |
tree | feb6eb90c0dc6391d03643f455c894335a44782b /lib | |
parent | b26e9185645a4344e113a98428cd3c342d09d024 (diff) |
lib: Fixup __gem_create() to be 64b safe.
We want to create very large objects, larger than the 2G limit imposed
by using ints.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Reviwed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ioctl_wrappers.c | 2 | ||||
-rw-r--r-- | lib/ioctl_wrappers.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c index 1b483706..87511fc6 100644 --- a/lib/ioctl_wrappers.c +++ b/lib/ioctl_wrappers.c @@ -551,7 +551,7 @@ uint32_t gem_create_stolen(int fd, uint64_t size) return create.handle; } -int __gem_create(int fd, int size, uint32_t *handle) +int __gem_create(int fd, uint64_t size, uint32_t *handle) { struct drm_i915_gem_create create = { .size = size, diff --git a/lib/ioctl_wrappers.h b/lib/ioctl_wrappers.h index 6ed65fad..1663b7f8 100644 --- a/lib/ioctl_wrappers.h +++ b/lib/ioctl_wrappers.h @@ -73,7 +73,7 @@ void gem_sync(int fd, uint32_t handle); bool gem_create__has_stolen_support(int fd); uint32_t __gem_create_stolen(int fd, uint64_t size); uint32_t gem_create_stolen(int fd, uint64_t size); -int __gem_create(int fd, int size, uint32_t *handle); +int __gem_create(int fd, uint64_t size, uint32_t *handle); uint32_t gem_create(int fd, uint64_t size); void gem_execbuf_wr(int fd, struct drm_i915_gem_execbuffer2 *execbuf); int __gem_execbuf_wr(int fd, struct drm_i915_gem_execbuffer2 *execbuf); |