From: Petr Vandrovec <vandrove@vc.cvut.cz>
To: torvalds@transmeta.com
Cc: linux-kernel@vger.kernel.org, linux-fbdev-devel@lists.sourceforge.net
Subject: [PATCH] 2.5.24 matroxfb memory corruption
Date: Sun, 30 Jun 2002 02:28:34 +0200 [thread overview]
Message-ID: <afles2$eas$2@main.gmane.org> (raw)
Hi,
Linus, please apply this. When James converted all drivers to unified
do_install_cmap(), he blindly changed also matroxfb, which happily
uses fbcon.currcon == -1. This caused memory corruption because of
memory before fb_display[] array was overwritten.
Default do_install_cmap() also installed invalid default color map
in some matroxfb resolutions. Not all world have >= 4bpp.
Thanks,
Petr Vandrovec
vandrove@vc.cvut.cz
diff -urdN linux/drivers/video/matrox/matroxfb_base.c linux/drivers/video/matrox/matroxfb_base.c
--- linux/drivers/video/matrox/matroxfb_base.c Fri Jun 21 00:53:55 2002
+++ linux/drivers/video/matrox/matroxfb_base.c Sun Jun 30 02:19:15 2002
@@ -141,6 +141,19 @@
/* --------------------------------------------------------------------- */
+static inline void my_install_cmap(WPMINFO2)
+{
+ /* Do not touch this code if you do not understand what it does! */
+ /* Never try to use do_install_cmap() instead. It is crap. */
+ struct fb_cmap* cmap = &ACCESS_FBINFO(currcon_display)->cmap;
+
+ if (cmap->len)
+ fb_set_cmap(cmap, 1, &ACCESS_FBINFO(fbcon));
+ else
+ fb_set_cmap(fb_default_cmap(ACCESS_FBINFO(curr.cmap_len)),
+ 1, &ACCESS_FBINFO(fbcon));
+}
+
static void matrox_pan_var(WPMINFO struct fb_var_screeninfo *var) {
unsigned int pos;
@@ -869,7 +882,7 @@
up_read(&ACCESS_FBINFO(altout.lock));
}
matrox_cfbX_init(PMINFO display);
- do_install_cmap(ACCESS_FBINFO(fbcon.currcon),&ACCESS_FBINFO(fbcon));
+ my_install_cmap(PMINFO2);
#if defined(CONFIG_FB_COMPAT_XPMAC)
if (console_fb_info == &ACCESS_FBINFO(fbcon)) {
int vmode, cmode;
diff -urdN linux/drivers/video/matrox/matroxfb_crtc2.c linux/drivers/video/matrox/matroxfb_crtc2.c
--- linux/drivers/video/matrox/matroxfb_crtc2.c Fri Jun 21 00:53:48 2002
+++ linux/drivers/video/matrox/matroxfb_crtc2.c Sun Jun 30 02:19:15 2002
@@ -84,6 +84,19 @@
#undef m2info
}
+static inline void my_install_cmap(struct matroxfb_dh_fb_info* m2info)
+{
+ /* Do not touch this code if you do not understand what it does! */
+ /* Never try to use do_install_cmap() instead. It is crap. */
+ struct fb_cmap* cmap = &m2info->currcon_display->cmap;
+
+ if (cmap->len)
+ fb_set_cmap(cmap, 1, &m2info->fbcon);
+ else
+ fb_set_cmap(fb_default_cmap(16), 1, &m2info->fbcon);
+}
+
+
static void matroxfb_dh_restore(struct matroxfb_dh_fb_info* m2info,
struct my_timming* mt,
struct display* p,
@@ -439,7 +452,7 @@
up_read(&ACCESS_FBINFO(altout.lock));
}
matroxfb_dh_cfbX_init(m2info, p);
- do_install_cmap(ACCESS_FBINFO(fbcon.currcon), &ACCESS_FBINFO(fbcon));
+ my_install_cmap(m2info);
}
return 0;
#undef m2info
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
No, I will not fix your computer.
http://thinkgeek.com/sf
next reply other threads:[~2002-06-29 23:11 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-06-30 0:28 Petr Vandrovec [this message]
-- strict thread matches above, loose matches on Subject: below --
2002-06-30 0:28 [PATCH] 2.5.24 matroxfb memory corruption Petr Vandrovec
2002-07-01 17:12 ` James Simmons
2002-07-01 17:12 ` James Simmons
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='afles2$eas$2@main.gmane.org' \
--to=vandrove@vc.cvut.cz \
--cc=linux-fbdev-devel@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.