]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/msm: Don't increase priv->num_aspaces until we know that it fits
authorJordan Crouse <jcrouse@codeaurora.org>
Tue, 7 Mar 2017 16:50:28 +0000 (09:50 -0700)
committerRob Clark <robdclark@gmail.com>
Sat, 8 Apr 2017 10:59:32 +0000 (06:59 -0400)
priv->num_aspaces is increased and then checked to see if it still fits
in the priv->aspace array.  If it doesn't, we warn and exit but
priv->num_aspaces remains incremented.

Don't incremement the count until we know that it fits in the array.

Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
drivers/gpu/drm/msm/msm_drv.c

index 3f36c8d931229e380b70418de24cd3956dfe8716..87b5695d4034df0e118475617167ee990ccfc490 100644 (file)
@@ -55,14 +55,13 @@ int msm_register_address_space(struct drm_device *dev,
                struct msm_gem_address_space *aspace)
 {
        struct msm_drm_private *priv = dev->dev_private;
-       int idx = priv->num_aspaces++;
 
-       if (WARN_ON(idx >= ARRAY_SIZE(priv->aspace)))
+       if (WARN_ON(priv->num_aspaces >= ARRAY_SIZE(priv->aspace)))
                return -EINVAL;
 
-       priv->aspace[idx] = aspace;
+       priv->aspace[priv->num_aspaces] = aspace;
 
-       return idx;
+       return priv->num_aspaces++;
 }
 
 #ifdef CONFIG_DRM_MSM_REGISTER_LOGGING