|
|
|
speakup bug | |
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
|
First it calls request_region and when that fails (it always fails), it calls __release_region(&then it calls release_region again to see if __release_region worked. But it never works because the region being requested is already taken.
The code in question is in 2 source code files in drivers/staging/speakup. It starts in serialio.c on line 38. Here it calls a function named synth_request_region which in turn, calls request_region. On line 41 it calls __release_region, and on line 42 it calls synth_request_region again. The function synth_request_region (which calls request_region) is in a file named synth.c. But this code always fails. Here is a kind of simplified version of it...
int error; struct resource tmp; tmp .name = "ltlk"; tmps.start = 0x3F8; tmp.end = 0x3FF; tmp.flags = IORESOURCE_BUSY; error = request_resource (&ioport_resource, &tmp);The error returned is always -16. I looked at the code in kernel/resource.c where the request_region function is defined. It builds a linked list of resources with start & end addresses. If you request a region that is already within the start-end range of a resource already in the list, it returns an error code. But it looks as if the region for a serial port, 0x3f8 - 0x3ff, in ioport_resource cannot be reserved because the entire range from 0x000 through 0xcf7 is already taken by something named "PCI Bus 0000:00". Therefore calling request_resource always fails and the driver for the speech synth errors out.
And therefore I can't use my hardware speech synth without modifying the kernel code. If you comment out the line that checks the return code from request_region, it works. So you have to modify the kernel code and compile a custom kernel to use a hardware speech synth. That's not such a problem for me but it is for a lot of people. Plus, the grml live CD doesn't work with hardware speech. That is a problem for me.
Can anyone tell me how to fix this so it can be patched in the official kernel code?
-- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[Other Archives] [Linux Kernel Newbies] [Linux Driver Development] [Fedora Kernel] [Linux Kernel Testers] [Linux SH] [Linux Omap] [Linux Kbuild] [Linux Tape] [Linux Input] [Linux Kernel Janitors] [Linux Kernel Packagers] [Linux Doc] [Linux Man Pages] [Linux API] [Linux Memory Management] [Linux Modules] [Linux Standards] [Kernel Announce] [Netdev] [Git] [Linux PCI] Linux CAN Development [Linux I2C] [Linux RDMA] [Linux NUMA] [Netfilter] [Netfilter Devel] [SELinux] [Bugtraq] [FIO] [Linux Perf Users] [Linux Serial] [Linux PPP] [Linux ISDN] [Linux Next] [Kernel Stable Commits] [Linux Tip Commits] [Kernel MM Commits] [Linux Security Module] [AutoFS] [Filesystem Development] [Ext3 Filesystem] [Linux bcache] [Ext4 Filesystem] [Linux BTRFS] [Linux CEPH Filesystem] [Linux XFS] [XFS] [Linux NFS] [Linux CIFS] [Ecryptfs] [Linux NILFS] [Linux Cachefs] [Reiser FS] [Initramfs] [Linux FB Devel] [Linux OpenGL] [DRI Devel] [Fastboot] [Linux RT Users] [Linux RT Stable] [eCos] [Corosync] [Linux Clusters] [LVS Devel] [Hot Plug] [Linux Virtualization] [KVM] [KVM PPC] [KVM ia64] [Linux Containers] [Linux Hexagon] [Linux Cgroups] [Util Linux] [Wireless] [Linux Bluetooth] [Bluez Devel] [Ethernet Bridging] [Embedded Linux] [Barebox] [Linux MMC] [Linux IIO] [Sparse] [Smatch] [Linux Arch] [x86 Platform Driver] [Linux ACPI] [Linux IBM ACPI] [LM Sensors] [CPU Freq] [Linux Power Management] [Linmodems] [Linux DCCP] [Linux SCTP] [ALSA Devel] [Linux USB] [Linux PA RISC] [Linux Samsung SOC] [MIPS Linux] [IBM S/390 Linux] [ARM Linux] [ARM Kernel] [ARM MSM] [Tegra Devel] [Sparc Linux] [Linux Security] [Linux Sound] [Linux Media] [Video 4 Linux] [Linux IRDA Users] [Linux for the blind] [Linux RAID] [Linux ATA RAID] [Device Mapper] [Linux SCSI] [SCSI Target Devel] [Linux SCSI Target Infrastructure] [Linux IDE] [Linux SMP] [Linux AXP] [Linux Alpha] [Linux M68K] [Linux ia64] [Linux 8086] [Linux x86_64] [Linux Config] [Linux Apps] [Linux MSDOS] [Linux X.25] [Linux Crypto] [DM Crypt] [Linux Trace Users] [Linux Btrace] [Linux Watchdog] [Utrace Devel] [Linux C Programming] [Linux Assembly] [Dash] [DWARVES] [Hail Devel] [Linux Kernel Debugger] [Linux gcc] [Gcc Help] [X.Org] [Wine]
![]() |
![]() |
[Older Kernel Discussion] [Yosemite National Park Forum] [Large Format Photos] [Gimp] [Yosemite Photos] [Stuff]