summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Dänzer <michel.daenzer@amd.com>2016-01-21 18:08:49 +0900
committerMichel Dänzer <michel@daenzer.net>2016-01-21 18:08:49 +0900
commitdb138b9ba12a0de5d6140832c0679c2418e3e7e0 (patch)
tree838f6989d94fe47b9e322b933623293b11927413
parent25712f1d35f6f64167ede45d3dc72a410f367ceb (diff)
downloaddrm-db138b9ba12a0de5d6140832c0679c2418e3e7e0.tar.gz
radeon: Pass radeon_bo_open flags to the DRM_RADEON_GEM_CREATE ioctl
Not doing so makes it impossible for radeon_bo_open callers to set any RADEON_GEM_* flags for the newly created BO. Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--radeon/radeon_bo_gem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/radeon/radeon_bo_gem.c b/radeon/radeon_bo_gem.c
index c9fe19ff..fbd453d9 100644
--- a/radeon/radeon_bo_gem.c
+++ b/radeon/radeon_bo_gem.c
@@ -103,7 +103,7 @@ static struct radeon_bo *bo_open(struct radeon_bo_manager *bom,
args.size = size;
args.alignment = alignment;
args.initial_domain = bo->base.domains;
- args.flags = 0;
+ args.flags = flags;
args.handle = 0;
r = drmCommandWriteRead(bom->fd, DRM_RADEON_GEM_CREATE,
&args, sizeof(args));