On Fri, 1 Oct 2004, martin f krafft wrote: > also sprach David Brownell <[EMAIL PROTECTED]> [2004.10.01.1930 +0200]: > > This suggests UHCI (or the hub driver?) confused usbcore somehow. > > Can you find out what's at that line? There's some GDB command > > that'll turn that into a line of C code if your kernel is > > appropriately compiled; doesn't come quickly to mind. > > I use the Debian stock kernel, so there are no debugging symbols. > > However, the system is still in the same state, so if someone can > figure out the GDB command, I am game...
One way to do this is to run "gdb hcd.o" from within the drivers/usb/core directory, and then do "disass hcd_endpoint_disable" at the prompt. The output isn't very readable because no external addresses will be given. But it's better than nothing. It's also possible to get a disassembly listing using objdump's -d option. I don't know any way to restrict it to a particular routine, though. Alan Stern ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ [EMAIL PROTECTED] To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel
