* [PATCH] fix DMI onboard device discovery
@ 2006-03-23 13:29 Andrey Panin
0 siblings, 0 replies; only message in thread
From: Andrey Panin @ 2006-03-23 13:29 UTC (permalink / raw)
To: linux-kernel
[-- Attachment #1.1: Type: text/plain, Size: 289 bytes --]
Hello,
attached patch fixes invalid pointer arithmetic in DMI code to
make onboard device discovery working again. Tested and works.
Please consider applying.
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke@donpac.ru | PGP key: wwwkeys.pgp.net
[-- Attachment #1.2: patch-dmi-fix --]
[-- Type: text/plain, Size: 711 bytes --]
Signed-off-by: Andrey Panin <pazke@donpac.ru>
dmi_scan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -urdpNX /usr/share/dontdiff linux-2.6.16.vanilla/arch/i386/kernel/dmi_scan.c linux-2.6.16/arch/i386/kernel/dmi_scan.c
--- linux-2.6.16.vanilla/arch/i386/kernel/dmi_scan.c 2006-03-22 21:07:32.000000000 +0300
+++ linux-2.6.16/arch/i386/kernel/dmi_scan.c 2006-03-22 21:11:32.775227680 +0300
@@ -106,7 +106,7 @@ static void __init dmi_save_devices(stru
struct dmi_device *dev;
for (i = 0; i < count; i++) {
- char *d = ((char *) dm) + (i * 2);
+ char *d = ((char *) dm) + sizeof(struct dmi_header) + (i * 2);
/* Skip disabled device */
if ((*d & 0x80) == 0)
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 191 bytes --]
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-03-23 13:29 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-23 13:29 [PATCH] fix DMI onboard device discovery Andrey Panin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox