public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [HID] Fix hiddev devfs oops
@ 2004-10-05 12:49 Herbert Xu
  2004-10-11 17:21 ` Marcelo Tosatti
  0 siblings, 1 reply; 7+ messages in thread
From: Herbert Xu @ 2004-10-05 12:49 UTC (permalink / raw)
  To: Vojtech Pavlik, linux-usb-devel
  Cc: Marcelo Tosatti, Linux Kernel Mailing List

[-- Attachment #1: Type: text/plain, Size: 674 bytes --]

Hi:

There is a long-standing devfs_unregister oops in hid/hiddev.  It's
caused by hid calling hiddev_exit before unregistering itself which
in turn calls hiddev_disconnect.

hiddev_exit removes the directory which contains the hiddev devices.
Therefore it needs to be called after the hiddev devices have been
disconnected.

This patch fixes that.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

Marcelo, the same fix is needed in 2.4 as well.

Cheers,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

[-- Attachment #2: p-2.6 --]
[-- Type: text/plain, Size: 344 bytes --]

===== drivers/usb/input/hid-core.c 1.94 vs edited =====
--- 1.94/drivers/usb/input/hid-core.c	2004-08-25 22:01:29 +10:00
+++ edited/drivers/usb/input/hid-core.c	2004-10-05 22:44:03 +10:00
@@ -1859,8 +1859,8 @@
 
 static void __exit hid_exit(void)
 {
-	hiddev_exit();
 	usb_deregister(&hid_driver);
+	hiddev_exit();
 }
 
 module_init(hid_init);

[-- Attachment #3: p-2.4 --]
[-- Type: text/plain, Size: 326 bytes --]

===== drivers/usb/hid-core.c 1.30 vs edited =====
--- 1.30/drivers/usb/hid-core.c	2004-08-08 18:59:53 +10:00
+++ edited/drivers/usb/hid-core.c	2004-10-05 22:33:52 +10:00
@@ -1459,8 +1459,8 @@
 
 static void __exit hid_exit(void)
 {
-	hiddev_exit();
 	usb_deregister(&hid_driver);
+	hiddev_exit();
 }
 
 module_init(hid_init);

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2004-10-13  2:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-05 12:49 [HID] Fix hiddev devfs oops Herbert Xu
2004-10-11 17:21 ` Marcelo Tosatti
2004-10-12 21:21   ` Herbert Xu
2004-10-12 22:23     ` [linux-usb-devel] " Pete Zaitcev
2004-10-12 23:14       ` Herbert Xu
2004-10-13  0:51         ` Adam Kropelin
2004-10-13  2:20           ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox