lkml.org 
[lkml]   [2006]   [Jan]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectFIXED: re: PROBLEM: 2.6.15 Oops in USBHID (good news)
Greetings,

Andrew asked me to test the 2.6.16-rc1 in regards to an Oops I got at
bootup in 2.6.15 a few weeks ago.

The error was due to a null pointer dereferencing in the USB HID code
(drivers/usb/input/pid.c line 262):

OLD (error) code:
struct hid_input *hidinput = list_entry(&hid->inputs, struct hid_input, list);

NEW (fixed) code:
struct hid_input *hidinput = list_entry(hid->inputs.next, struct
hid_input, list);

The code fix is indeed in 2.6.16-rc1 and the Oops on bootup doesn't
happen on my system anymore with 2.6.16-rc1.

The original debug and Oops messages are still available online in
case anyone doesn't have anything more interesting to read... ;-)

http://www.cs.txstate.edu/~patrick/kernel-debug/

Regards,
Patrick
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2006-01-22 21:13    [W:0.103 / U:0.456 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site