[PATCH 1/2] drm/nouveau: fix notifier memory corruption bug

2011-04-19 Thread Marcin Slusarz
nouveau_bo_wr32 expects offset to be in words, but we pass value in bytes,
so after commit 73412c3854c877e5f37ad944ee8977addde4d35a ("drm/nouveau: allocate
kernel's notifier object at end of block") we started to overwrite some memory
after notifier buffer object (previously m2mf_ntfy was always 0, so it didn't
matter it was a value in bytes).

Reported-by: Dominik Brodowski 
Reported-by: Nigel Cunningham 
Signed-off-by: Marcin Slusarz 
Cc: Ben Skeggs 
Cc: Pekka Paalanen 
Cc: sta...@kernel.org[2.6.38]
---
 drivers/gpu/drm/nouveau/nouveau_fbcon.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nouveau_fbcon.c 
b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
index 889c445..39aee6d 100644
--- a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
+++ b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
@@ -181,13 +181,13 @@ nouveau_fbcon_sync(struct fb_info *info)
OUT_RING  (chan, 0);
}
 
-   nouveau_bo_wr32(chan->notifier_bo, chan->m2mf_ntfy + 3, 0x);
+   nouveau_bo_wr32(chan->notifier_bo, chan->m2mf_ntfy/4 + 3, 0x);
FIRE_RING(chan);
mutex_unlock(&chan->mutex);
 
ret = -EBUSY;
for (i = 0; i < 10; i++) {
-   if (!nouveau_bo_rd32(chan->notifier_bo, chan->m2mf_ntfy + 3)) {
+   if (!nouveau_bo_rd32(chan->notifier_bo, chan->m2mf_ntfy/4 + 3)) 
{
ret = 0;
break;
}
-- 
1.7.4.1

___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[PATCH 1/2] drm/nouveau: fix notifier memory corruption bug

2011-04-19 Thread Marcin Slusarz
nouveau_bo_wr32 expects offset to be in words, but we pass value in bytes,
so after commit 73412c3854c877e5f37ad944ee8977addde4d35a ("drm/nouveau: allocate
kernel's notifier object at end of block") we started to overwrite some memory
after notifier buffer object (previously m2mf_ntfy was always 0, so it didn't
matter it was a value in bytes).

Reported-by: Dominik Brodowski 
Reported-by: Nigel Cunningham 
Signed-off-by: Marcin Slusarz 
Cc: Ben Skeggs 
Cc: Pekka Paalanen 
Cc: stable at kernel.org[2.6.38]
---
 drivers/gpu/drm/nouveau/nouveau_fbcon.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nouveau_fbcon.c 
b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
index 889c445..39aee6d 100644
--- a/drivers/gpu/drm/nouveau/nouveau_fbcon.c
+++ b/drivers/gpu/drm/nouveau/nouveau_fbcon.c
@@ -181,13 +181,13 @@ nouveau_fbcon_sync(struct fb_info *info)
OUT_RING  (chan, 0);
}

-   nouveau_bo_wr32(chan->notifier_bo, chan->m2mf_ntfy + 3, 0x);
+   nouveau_bo_wr32(chan->notifier_bo, chan->m2mf_ntfy/4 + 3, 0x);
FIRE_RING(chan);
mutex_unlock(&chan->mutex);

ret = -EBUSY;
for (i = 0; i < 10; i++) {
-   if (!nouveau_bo_rd32(chan->notifier_bo, chan->m2mf_ntfy + 3)) {
+   if (!nouveau_bo_rd32(chan->notifier_bo, chan->m2mf_ntfy/4 + 3)) 
{
ret = 0;
break;
}
-- 
1.7.4.1