linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* FIXED: re: PROBLEM: 2.6.15 Oops in USBHID (good news)
@ 2006-01-22 20:10 Patrick Read
  0 siblings, 0 replies; only message in thread
From: Patrick Read @ 2006-01-22 20:10 UTC (permalink / raw)
  To: akpm, linux-kernel; +Cc: pread99999

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-01-22 20:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-22 20:10 FIXED: re: PROBLEM: 2.6.15 Oops in USBHID (good news) Patrick Read

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).