aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_channel.c
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2010-10-18 03:54:33 +0200
committerBen Skeggs <bskeggs@redhat.com>2010-12-03 15:06:36 +1000
commitf175b745b50c5c5356e8b3b409b7f38aa44de6bb (patch)
treeed2dcd8f88f3be4df90fd1333f3735218e1be21a /drivers/gpu/drm/nouveau/nouveau_channel.c
parent3945e47543863385b54d94c94b023ee7ca9df972 (diff)
downloadkernel_samsung_smdk4412-f175b745b50c5c5356e8b3b409b7f38aa44de6bb.zip
kernel_samsung_smdk4412-f175b745b50c5c5356e8b3b409b7f38aa44de6bb.tar.gz
kernel_samsung_smdk4412-f175b745b50c5c5356e8b3b409b7f38aa44de6bb.tar.bz2
drm/nouveau: Fix race condition in channel refcount handling.
nouveau_channel_put() can be executed after the 'refcount == 0' check in nouveau_channel_get() and before the channel reference count is incremented. In that case CPU0 will take the context down while CPU1 thinks it owns the channel and 'refcount == 1'. Signed-off-by: Francisco Jerez <currojerez@riseup.net> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_channel.c')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_channel.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_channel.c b/drivers/gpu/drm/nouveau/nouveau_channel.c
index 9a051fa..c46a6f6 100644
--- a/drivers/gpu/drm/nouveau/nouveau_channel.c
+++ b/drivers/gpu/drm/nouveau/nouveau_channel.c
@@ -247,17 +247,16 @@ nouveau_channel_get(struct drm_device *dev, struct drm_file *file_priv, int id)
spin_lock_irqsave(&dev_priv->channels.lock, flags);
chan = dev_priv->channels.ptr[id];
- if (unlikely(!chan || atomic_read(&chan->refcount) == 0)) {
+ if (unlikely(!chan || (file_priv && chan->file_priv != file_priv))) {
spin_unlock_irqrestore(&dev_priv->channels.lock, flags);
return ERR_PTR(-EINVAL);
}
- if (unlikely(file_priv && chan->file_priv != file_priv)) {
+ if (unlikely(!atomic_inc_not_zero(&chan->refcount))) {
spin_unlock_irqrestore(&dev_priv->channels.lock, flags);
return ERR_PTR(-EINVAL);
}
- atomic_inc(&chan->refcount);
spin_unlock_irqrestore(&dev_priv->channels.lock, flags);
mutex_lock(&chan->mutex);