|
@@ -664,6 +664,12 @@ static int msm_ioctl_gem_new(struct drm_device *dev, void *data,
|
|
|
struct drm_file *file)
|
|
|
{
|
|
|
struct drm_msm_gem_new *args = data;
|
|
|
+
|
|
|
+ if (args->flags & ~MSM_BO_FLAGS) {
|
|
|
+ DRM_ERROR("invalid flags: %08x\n", args->flags);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
return msm_gem_new_handle(dev, file, args->size,
|
|
|
args->flags, &args->handle);
|
|
|
}
|
|
@@ -677,6 +683,11 @@ static int msm_ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
|
|
|
struct drm_gem_object *obj;
|
|
|
int ret;
|
|
|
|
|
|
+ if (args->op & ~MSM_PREP_FLAGS) {
|
|
|
+ DRM_ERROR("invalid op: %08x\n", args->op);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
obj = drm_gem_object_lookup(dev, file, args->handle);
|
|
|
if (!obj)
|
|
|
return -ENOENT;
|
|
@@ -731,7 +742,14 @@ static int msm_ioctl_wait_fence(struct drm_device *dev, void *data,
|
|
|
struct drm_file *file)
|
|
|
{
|
|
|
struct drm_msm_wait_fence *args = data;
|
|
|
- return msm_wait_fence_interruptable(dev, args->fence, &TS(args->timeout));
|
|
|
+
|
|
|
+ if (args->pad) {
|
|
|
+ DRM_ERROR("invalid pad: %08x\n", args->pad);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ return msm_wait_fence_interruptable(dev, args->fence,
|
|
|
+ &TS(args->timeout));
|
|
|
}
|
|
|
|
|
|
static const struct drm_ioctl_desc msm_ioctls[] = {
|