* Fw: Oops in hidinput_hid_event
@ 2005-07-18 21:16 Pete Zaitcev
2005-07-19 1:31 ` Jesper Juhl
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Pete Zaitcev @ 2005-07-18 21:16 UTC (permalink / raw)
To: vojtech; +Cc: linux-kernel
I think this patch is rather obvious, so maybe I should ask Andrew to
apply it to -mm for now, to get some testing. Would that help to verify
it for acceptance?
-- Pete
Begin forwarded message:
Date: Tue, 28 Jun 2005 15:00:23 -0700
From: Pete Zaitcev <zaitcev@redhat.com>
To: vojtech@suse.cz
Cc: zaitcev@redhat.com, linux-usb-devel@lists.sourceforge.net
Subject: Oops in hidinput_hid_event
Hi, Vojtech:
Someone reported a bug in Fedora, which runs a largely unmodified upstream
kernel in this area. Whenever the user hits a key which switches LED,
the system oopses. Here's a trace:
Unable to handle kernel NULL pointer dereference at virtual address 000000c8
EFLAGS: 00010006 (2.6.11-1.1369_FC4smp)
EIP is at hidinput_hid_event+0x2d/0x292
Call Trace:
[<c02872e0>] hid_process_event+0x57/0x5f
[<c028758a>] hid_input_field+0x2a2/0x2ac
[<c0287632>] hid_input_report+0x9e/0xb8
[<c0287f62>] hid_ctrl+0x14c/0x151
[<e0a21060>] uhci_destroy_urb_priv+0xb5/0x10a [uhci_hcd]
[<c027dab5>] usb_hcd_giveback_urb+0x24/0x67
[<e0a22360>] uhci_finish_urb+0x2d/0x38 [uhci_hcd]
[<e0a223af>] uhci_finish_completion+0x44/0x56 [uhci_hcd]
[<e0a224a2>] uhci_scan_schedule+0xaa/0x13a [uhci_hcd]
[<c023413d>] i8042_interrupt+0x121/0x234
[<e0a226d0>] uhci_irq+0x47/0x10d [uhci_hcd]
Full trace at
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=160709
Any ideas?
By the way, it seems that I see a bug in hidinput_hid_event.
The check for NULL can never work, becaue &hidinput->input
is nonzero at all times. How about this?
--- linux-2.6.12/drivers/usb/input/hid-input.c 2005-06-21 12:58:47.000000000 -0700
+++ linux-2.6.12-lem/drivers/usb/input/hid-input.c 2005-06-28 14:57:22.000000000 -0700
@@ -397,11 +397,12 @@
void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value, struct pt_regs *regs)
{
- struct input_dev *input = &field->hidinput->input;
+ struct input_dev *input;
int *quirks = &hid->quirks;
- if (!input)
+ if (!field->hidinput)
return;
+ input = &field->hidinput->input;
input_regs(input, regs);
-- Pete
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: Fw: Oops in hidinput_hid_event 2005-07-18 21:16 Fw: Oops in hidinput_hid_event Pete Zaitcev @ 2005-07-19 1:31 ` Jesper Juhl 2005-07-19 1:34 ` Jesper Juhl 2005-07-19 7:17 ` Pete Zaitcev 2005-07-19 13:30 ` Vojtech Pavlik 2005-07-26 3:52 ` Andrew Morton 2 siblings, 2 replies; 8+ messages in thread From: Jesper Juhl @ 2005-07-19 1:31 UTC (permalink / raw) To: Pete Zaitcev; +Cc: vojtech, linux-kernel On 7/18/05, Pete Zaitcev <zaitcev@redhat.com> wrote: > I think this patch is rather obvious, so maybe I should ask Andrew to > apply it to -mm for now, to get some testing. Would that help to verify > it for acceptance? > > -- Pete > > Begin forwarded message: > > Date: Tue, 28 Jun 2005 15:00:23 -0700 > From: Pete Zaitcev <zaitcev@redhat.com> > To: vojtech@suse.cz > Cc: zaitcev@redhat.com, linux-usb-devel@lists.sourceforge.net > Subject: Oops in hidinput_hid_event > > Hi, Vojtech: > > Someone reported a bug in Fedora, which runs a largely unmodified upstream > kernel in this area. Whenever the user hits a key which switches LED, > the system oopses. Here's a trace: > > Unable to handle kernel NULL pointer dereference at virtual address 000000c8 > EFLAGS: 00010006 (2.6.11-1.1369_FC4smp) > EIP is at hidinput_hid_event+0x2d/0x292 > Call Trace: > [<c02872e0>] hid_process_event+0x57/0x5f > [<c028758a>] hid_input_field+0x2a2/0x2ac > [<c0287632>] hid_input_report+0x9e/0xb8 > [<c0287f62>] hid_ctrl+0x14c/0x151 > [<e0a21060>] uhci_destroy_urb_priv+0xb5/0x10a [uhci_hcd] > [<c027dab5>] usb_hcd_giveback_urb+0x24/0x67 > [<e0a22360>] uhci_finish_urb+0x2d/0x38 [uhci_hcd] > [<e0a223af>] uhci_finish_completion+0x44/0x56 [uhci_hcd] > [<e0a224a2>] uhci_scan_schedule+0xaa/0x13a [uhci_hcd] > [<c023413d>] i8042_interrupt+0x121/0x234 > [<e0a226d0>] uhci_irq+0x47/0x10d [uhci_hcd] > > Full trace at > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=160709 > > Any ideas? > > By the way, it seems that I see a bug in hidinput_hid_event. > The check for NULL can never work, becaue &hidinput->input > is nonzero at all times. How about this? > > --- linux-2.6.12/drivers/usb/input/hid-input.c 2005-06-21 12:58:47.000000000 -0700 > +++ linux-2.6.12-lem/drivers/usb/input/hid-input.c 2005-06-28 14:57:22.000000000 -0700 > @@ -397,11 +397,12 @@ > > void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value, struct pt_regs *regs) > { > - struct input_dev *input = &field->hidinput->input; > + struct input_dev *input; > int *quirks = &hid->quirks; > > - if (!input) > + if (!field->hidinput) How about if (!field || !field->hdinput) instead? > return; > + input = &field->hidinput->input; Add a if (!input) return; check here? > > input_regs(input, regs); > > > -- Pete -- Jesper Juhl <jesper.juhl@gmail.com> Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html Plain text mails only, please http://www.expita.com/nomime.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Fw: Oops in hidinput_hid_event 2005-07-19 1:31 ` Jesper Juhl @ 2005-07-19 1:34 ` Jesper Juhl 2005-07-19 7:17 ` Pete Zaitcev 1 sibling, 0 replies; 8+ messages in thread From: Jesper Juhl @ 2005-07-19 1:34 UTC (permalink / raw) To: Pete Zaitcev; +Cc: vojtech, linux-kernel On 7/19/05, Jesper Juhl <jesper.juhl@gmail.com> wrote: > On 7/18/05, Pete Zaitcev <zaitcev@redhat.com> wrote: > > I think this patch is rather obvious, so maybe I should ask Andrew to > > apply it to -mm for now, to get some testing. Would that help to verify > > it for acceptance? > > > > -- Pete > > > > Begin forwarded message: > > > > Date: Tue, 28 Jun 2005 15:00:23 -0700 > > From: Pete Zaitcev <zaitcev@redhat.com> > > To: vojtech@suse.cz > > Cc: zaitcev@redhat.com, linux-usb-devel@lists.sourceforge.net > > Subject: Oops in hidinput_hid_event > > > > Hi, Vojtech: > > > > Someone reported a bug in Fedora, which runs a largely unmodified upstream > > kernel in this area. Whenever the user hits a key which switches LED, > > the system oopses. Here's a trace: > > > > Unable to handle kernel NULL pointer dereference at virtual address 000000c8 > > EFLAGS: 00010006 (2.6.11-1.1369_FC4smp) > > EIP is at hidinput_hid_event+0x2d/0x292 > > Call Trace: > > [<c02872e0>] hid_process_event+0x57/0x5f > > [<c028758a>] hid_input_field+0x2a2/0x2ac > > [<c0287632>] hid_input_report+0x9e/0xb8 > > [<c0287f62>] hid_ctrl+0x14c/0x151 > > [<e0a21060>] uhci_destroy_urb_priv+0xb5/0x10a [uhci_hcd] > > [<c027dab5>] usb_hcd_giveback_urb+0x24/0x67 > > [<e0a22360>] uhci_finish_urb+0x2d/0x38 [uhci_hcd] > > [<e0a223af>] uhci_finish_completion+0x44/0x56 [uhci_hcd] > > [<e0a224a2>] uhci_scan_schedule+0xaa/0x13a [uhci_hcd] > > [<c023413d>] i8042_interrupt+0x121/0x234 > > [<e0a226d0>] uhci_irq+0x47/0x10d [uhci_hcd] > > > > Full trace at > > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=160709 > > > > Any ideas? > > > > By the way, it seems that I see a bug in hidinput_hid_event. > > The check for NULL can never work, becaue &hidinput->input > > is nonzero at all times. How about this? > > > > --- linux-2.6.12/drivers/usb/input/hid-input.c 2005-06-21 12:58:47.000000000 -0700 > > +++ linux-2.6.12-lem/drivers/usb/input/hid-input.c 2005-06-28 14:57:22.000000000 -0700 > > @@ -397,11 +397,12 @@ > > > > void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value, struct pt_regs *regs) > > { > > - struct input_dev *input = &field->hidinput->input; > > + struct input_dev *input; > > int *quirks = &hid->quirks; > > > > - if (!input) > > + if (!field->hidinput) > > How about > if (!field || !field->hdinput) > instead? > > > return; > > + input = &field->hidinput->input; > > Add a > if (!input) > return; > check here? > Ehh, I must have been sleeping, disregard this last bit... -- Jesper Juhl <jesper.juhl@gmail.com> Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html Plain text mails only, please http://www.expita.com/nomime.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Fw: Oops in hidinput_hid_event 2005-07-19 1:31 ` Jesper Juhl 2005-07-19 1:34 ` Jesper Juhl @ 2005-07-19 7:17 ` Pete Zaitcev 1 sibling, 0 replies; 8+ messages in thread From: Pete Zaitcev @ 2005-07-19 7:17 UTC (permalink / raw) To: Jesper Juhl; +Cc: vojtech, linux-kernel, zaitcev On Tue, 19 Jul 2005 03:31:12 +0200, Jesper Juhl <jesper.juhl@gmail.com> wrote: > > void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value, struct pt_regs *regs) > > { > > - struct input_dev *input = &field->hidinput->input; > > + struct input_dev *input; > > int *quirks = &hid->quirks; > > > > - if (!input) > > + if (!field->hidinput) > > How about > if (!field || !field->hdinput) > instead? > > > return; > > + input = &field->hidinput->input; It would be more reliable, certainly. However, this is likely not what Vojtech has intended. I do not understand how this code functions, and I would be ashamed just adding NULL checks all over the place. Also, the original oops happens after a certain field was accessed, not at an argument. It's not quite clear to me what happened, because of optimizations, but I suspect this may be it. -- Pete ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Fw: Oops in hidinput_hid_event 2005-07-18 21:16 Fw: Oops in hidinput_hid_event Pete Zaitcev 2005-07-19 1:31 ` Jesper Juhl @ 2005-07-19 13:30 ` Vojtech Pavlik 2005-07-26 14:11 ` Sergey Vlasov 2005-07-26 3:52 ` Andrew Morton 2 siblings, 1 reply; 8+ messages in thread From: Vojtech Pavlik @ 2005-07-19 13:30 UTC (permalink / raw) To: Pete Zaitcev; +Cc: linux-kernel On Mon, Jul 18, 2005 at 02:16:37PM -0700, Pete Zaitcev wrote: > I think this patch is rather obvious, so maybe I should ask Andrew to > apply it to -mm for now, to get some testing. Would that help to verify > it for acceptance? Your patch is perfectly OK, my NULL check was indeed completely wrong. I need to find out how there can be an input event happening without its associated input structure, though, since the oops actually reveals a deeper problem. So that's why I didn't apply the patch yet. > Begin forwarded message: > > Date: Tue, 28 Jun 2005 15:00:23 -0700 > From: Pete Zaitcev <zaitcev@redhat.com> > To: vojtech@suse.cz > Cc: zaitcev@redhat.com, linux-usb-devel@lists.sourceforge.net > Subject: Oops in hidinput_hid_event > > Hi, Vojtech: > > Someone reported a bug in Fedora, which runs a largely unmodified upstream > kernel in this area. Whenever the user hits a key which switches LED, > the system oopses. Here's a trace: > > Unable to handle kernel NULL pointer dereference at virtual address 000000c8 > EFLAGS: 00010006 (2.6.11-1.1369_FC4smp) > EIP is at hidinput_hid_event+0x2d/0x292 > Call Trace: > [<c02872e0>] hid_process_event+0x57/0x5f > [<c028758a>] hid_input_field+0x2a2/0x2ac > [<c0287632>] hid_input_report+0x9e/0xb8 > [<c0287f62>] hid_ctrl+0x14c/0x151 > [<e0a21060>] uhci_destroy_urb_priv+0xb5/0x10a [uhci_hcd] > [<c027dab5>] usb_hcd_giveback_urb+0x24/0x67 > [<e0a22360>] uhci_finish_urb+0x2d/0x38 [uhci_hcd] > [<e0a223af>] uhci_finish_completion+0x44/0x56 [uhci_hcd] > [<e0a224a2>] uhci_scan_schedule+0xaa/0x13a [uhci_hcd] > [<c023413d>] i8042_interrupt+0x121/0x234 > [<e0a226d0>] uhci_irq+0x47/0x10d [uhci_hcd] > > Full trace at > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=160709 > > Any ideas? > > By the way, it seems that I see a bug in hidinput_hid_event. > The check for NULL can never work, becaue &hidinput->input > is nonzero at all times. How about this? > > --- linux-2.6.12/drivers/usb/input/hid-input.c 2005-06-21 12:58:47.000000000 -0700 > +++ linux-2.6.12-lem/drivers/usb/input/hid-input.c 2005-06-28 14:57:22.000000000 -0700 > @@ -397,11 +397,12 @@ > > void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value, struct pt_regs *regs) > { > - struct input_dev *input = &field->hidinput->input; > + struct input_dev *input; > int *quirks = &hid->quirks; > > - if (!input) > + if (!field->hidinput) > return; > + input = &field->hidinput->input; > > input_regs(input, regs); > > > -- Pete > -- Vojtech Pavlik SuSE Labs, SuSE CR ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Fw: Oops in hidinput_hid_event 2005-07-19 13:30 ` Vojtech Pavlik @ 2005-07-26 14:11 ` Sergey Vlasov 0 siblings, 0 replies; 8+ messages in thread From: Sergey Vlasov @ 2005-07-26 14:11 UTC (permalink / raw) To: Vojtech Pavlik; +Cc: Pete Zaitcev, linux-kernel [-- Attachment #1: Type: text/plain, Size: 3886 bytes --] On Tue, 19 Jul 2005 09:30:58 -0400 Vojtech Pavlik wrote: > On Mon, Jul 18, 2005 at 02:16:37PM -0700, Pete Zaitcev wrote: > > > I think this patch is rather obvious, so maybe I should ask Andrew to > > apply it to -mm for now, to get some testing. Would that help to verify > > it for acceptance? > > Your patch is perfectly OK, my NULL check was indeed completely wrong. > > I need to find out how there can be an input event happening without its > associated input structure, though, since the oops actually reveals a > deeper problem. hidinput_connect() does: for (k = HID_INPUT_REPORT; k <= HID_OUTPUT_REPORT; k++) ... loop which calls hidinput_configure_usage(), which initializes report->hidinput pointers ... So ->hidinput is getting set only for fields of input and output reports, but the device may also support feature reports, and for their fields ->hidinput will remain NULL. When such report is requested with hid_submit_report(hid, report, USB_DIR_IN), the completed urb will be handled by hid_ctrl(), which will call hid_input_report() for it; this corresponds to the traceback in oops. BTW, the driver requests all feature reports during initialization (in hid_init_reports()), but it does not oops there, because hidinput_connect() is called only later, and therefore HID_CLAIMED_INPUT is not yet set. However, I still don't understand where hid_submit_report() gets called for a feature report in the reported case (hidinput_input_event() can submit only output reports, and a call from hiddev is unlikely to be triggered by a NumLock press). > So that's why I didn't apply the patch yet. > > > Begin forwarded message: > > > > Date: Tue, 28 Jun 2005 15:00:23 -0700 > > From: Pete Zaitcev <zaitcev@redhat.com> > > To: vojtech@suse.cz > > Cc: zaitcev@redhat.com, linux-usb-devel@lists.sourceforge.net > > Subject: Oops in hidinput_hid_event > > > > Hi, Vojtech: > > > > Someone reported a bug in Fedora, which runs a largely unmodified upstream > > kernel in this area. Whenever the user hits a key which switches LED, > > the system oopses. Here's a trace: > > > > Unable to handle kernel NULL pointer dereference at virtual address 000000c8 > > EFLAGS: 00010006 (2.6.11-1.1369_FC4smp) > > EIP is at hidinput_hid_event+0x2d/0x292 > > Call Trace: > > [<c02872e0>] hid_process_event+0x57/0x5f > > [<c028758a>] hid_input_field+0x2a2/0x2ac > > [<c0287632>] hid_input_report+0x9e/0xb8 > > [<c0287f62>] hid_ctrl+0x14c/0x151 > > [<e0a21060>] uhci_destroy_urb_priv+0xb5/0x10a [uhci_hcd] > > [<c027dab5>] usb_hcd_giveback_urb+0x24/0x67 > > [<e0a22360>] uhci_finish_urb+0x2d/0x38 [uhci_hcd] > > [<e0a223af>] uhci_finish_completion+0x44/0x56 [uhci_hcd] > > [<e0a224a2>] uhci_scan_schedule+0xaa/0x13a [uhci_hcd] > > [<c023413d>] i8042_interrupt+0x121/0x234 > > [<e0a226d0>] uhci_irq+0x47/0x10d [uhci_hcd] > > > > Full trace at > > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=160709 > > > > Any ideas? > > > > By the way, it seems that I see a bug in hidinput_hid_event. > > The check for NULL can never work, becaue &hidinput->input > > is nonzero at all times. How about this? > > > > --- linux-2.6.12/drivers/usb/input/hid-input.c 2005-06-21 12:58:47.000000000 -0700 > > +++ linux-2.6.12-lem/drivers/usb/input/hid-input.c 2005-06-28 14:57:22.000000000 -0700 > > @@ -397,11 +397,12 @@ > > > > void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value, struct pt_regs *regs) > > { > > - struct input_dev *input = &field->hidinput->input; > > + struct input_dev *input; > > int *quirks = &hid->quirks; > > > > - if (!input) > > + if (!field->hidinput) > > return; > > + input = &field->hidinput->input; > > > > input_regs(input, regs); > > > > > > -- Pete > > > > -- > Vojtech Pavlik > SuSE Labs, SuSE CR [-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Fw: Oops in hidinput_hid_event 2005-07-18 21:16 Fw: Oops in hidinput_hid_event Pete Zaitcev 2005-07-19 1:31 ` Jesper Juhl 2005-07-19 13:30 ` Vojtech Pavlik @ 2005-07-26 3:52 ` Andrew Morton 2005-07-26 4:13 ` Pete Zaitcev 2 siblings, 1 reply; 8+ messages in thread From: Andrew Morton @ 2005-07-26 3:52 UTC (permalink / raw) To: Pete Zaitcev; +Cc: vojtech, linux-kernel Pete Zaitcev <zaitcev@redhat.com> wrote: > > I think this patch is rather obvious, so maybe I should ask Andrew to > apply it to -mm for now, to get some testing. Would that help to verify > it for acceptance? > > -- Pete > > Begin forwarded message: > > Date: Tue, 28 Jun 2005 15:00:23 -0700 > From: Pete Zaitcev <zaitcev@redhat.com> > To: vojtech@suse.cz > Cc: zaitcev@redhat.com, linux-usb-devel@lists.sourceforge.net > Subject: Oops in hidinput_hid_event > > Hi, Vojtech: > > Someone reported a bug in Fedora, which runs a largely unmodified upstream > kernel in this area. Whenever the user hits a key which switches LED, > the system oopses. Here's a trace: > > Unable to handle kernel NULL pointer dereference at virtual address 000000c8 > EFLAGS: 00010006 (2.6.11-1.1369_FC4smp) > EIP is at hidinput_hid_event+0x2d/0x292 > Call Trace: > [<c02872e0>] hid_process_event+0x57/0x5f > [<c028758a>] hid_input_field+0x2a2/0x2ac > [<c0287632>] hid_input_report+0x9e/0xb8 > [<c0287f62>] hid_ctrl+0x14c/0x151 > [<e0a21060>] uhci_destroy_urb_priv+0xb5/0x10a [uhci_hcd] > [<c027dab5>] usb_hcd_giveback_urb+0x24/0x67 > [<e0a22360>] uhci_finish_urb+0x2d/0x38 [uhci_hcd] > [<e0a223af>] uhci_finish_completion+0x44/0x56 [uhci_hcd] > [<e0a224a2>] uhci_scan_schedule+0xaa/0x13a [uhci_hcd] > [<c023413d>] i8042_interrupt+0x121/0x234 > [<e0a226d0>] uhci_irq+0x47/0x10d [uhci_hcd] > > Full trace at > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=160709 > > Any ideas? > > By the way, it seems that I see a bug in hidinput_hid_event. > The check for NULL can never work, becaue &hidinput->input > is nonzero at all times. How about this? Do you expect this patch: > --- linux-2.6.12/drivers/usb/input/hid-input.c 2005-06-21 12:58:47.000000000 -0700 > +++ linux-2.6.12-lem/drivers/usb/input/hid-input.c 2005-06-28 14:57:22.000000000 -0700 > @@ -397,11 +397,12 @@ > > void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value, struct pt_regs *regs) > { > - struct input_dev *input = &field->hidinput->input; > + struct input_dev *input; > int *quirks = &hid->quirks; > > - if (!input) > + if (!field->hidinput) > return; > + input = &field->hidinput->input; > > input_regs(input, regs); To actually fix the above oops? It sure looks like it will. But I worry whether it is the correct fix? ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Fw: Oops in hidinput_hid_event 2005-07-26 3:52 ` Andrew Morton @ 2005-07-26 4:13 ` Pete Zaitcev 0 siblings, 0 replies; 8+ messages in thread From: Pete Zaitcev @ 2005-07-26 4:13 UTC (permalink / raw) To: Andrew Morton; +Cc: vojtech, linux-kernel On Mon, 25 Jul 2005 20:52:26 -0700, Andrew Morton <akpm@osdl.org> wrote: > Do you expect this patch: > > > --- linux-2.6.12/drivers/usb/input/hid-input.c 2005-06-21 12:58:47.000000000 -0700 > > - struct input_dev *input = &field->hidinput->input; > > + struct input_dev *input; > > - if (!input) > > + if (!field->hidinput) > > return; > > + input = &field->hidinput->input; > To actually fix the above oops? It sure looks like it will. > But I worry whether it is the correct fix? It is a correct fix, safe to apply. However, Vojtech wrote me that he will look how exactly an event can be reported without associated infrastructure. Personally, I suspect that this has something to do with the motherboard in question. Perhas the PS/2 port is disabled somehow... -- Pete ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2005-07-26 14:11 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2005-07-18 21:16 Fw: Oops in hidinput_hid_event Pete Zaitcev 2005-07-19 1:31 ` Jesper Juhl 2005-07-19 1:34 ` Jesper Juhl 2005-07-19 7:17 ` Pete Zaitcev 2005-07-19 13:30 ` Vojtech Pavlik 2005-07-26 14:11 ` Sergey Vlasov 2005-07-26 3:52 ` Andrew Morton 2005-07-26 4:13 ` Pete Zaitcev
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox