- 15 Mar, 2004 2 commits
-
-
Jeff Garzik authored
-
Jeff Garzik authored
Disable SCSI's clustering of S/G entries, typically reducing overall S/G list size. Although ATA S/G tables are getting smarter (64-bit address, 32-bit length, no DMA boundary besides 4G itself), working harder to generate large byte sizes for each S/G size is not necessarily in our best interest: * SATA consists of frames, much like ethernet, called "FIS". A Data FIS consists of up to 2048 dwords (8K) of data. We don't want generate large byte sizes in S/G entries, just to have the host controller break them up again into smaller chunks. * Reduces the possibility that ata_fill_sg (libata-core.c) must split an S/G into two pieces, because it straddles a 64K boundary. * Reduces the possibility that FIS-related errata workarounds must be enabled. One such exists in the Silicon Image driver (sata_sil), which is currently worked around by limiting the max-sectors-per-request to 15.
-
- 14 Mar, 2004 15 commits
-
-
Jeff Garzik authored
into redhat.com:/spare/repo/libata-2.5
-
Jeff Garzik authored
The original submittor of the quirk code noted that the errata of a lockup creating when the condition "sector % 15 == 1" is true only on chip revisions <= 1. This is limitation on chip revision is apparently not correct, therefore we apply to all affected drives in the quirk list. This is a sledgehammer fix, limiting max-sectors to 15. A much better fix would split the hardware request into two taskfiles, issuing an additional command, thereby avoiding "sectors % 15 == 1" Given the errata is limited to "sil 311x + <these drives>", it is hoped that some janitor cares enough to do a real fix.
-
http://nfsclient.bkbits.net/linux-2.5Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.5/linux
-
http://nfsclient.bkbits.net/linux-2.5Trond Myklebust authored
into fys.uio.no:/home/linux/bitkeeper/nfsclient-2.5
-
James Bottomley authored
The very early memory detection patch broke voyager. This fixes it again.
-
Andrew Morton authored
Fix a bug which was spotted by Alex Lyashkov <shadow@psoft.net> The fairly unobvious coding in __kill_pg_info() will cause a zero value to be incorrectly returned if the second or succeeding call to group_send_sig_info() returns an error.
-
Andrew Morton authored
From: Olaf Hering <olh@suse.de> This patch is needed on s390.
-
Andrew Morton authored
From: James Bottomley <James.Bottomley@SteelEye.com> pci_dev.consistent_dma_mask was introduced to get around problems in the IA64 Altix machine. Now, we have a use for it in x86: the aacraid needs coherent memory in a 31 bit address range (2GB). Unfortunately, x86 is converted to the dma model, so it can't see the pci_dev by the time coherent memory is allocated. The solution to all of this is to move pci_dev.consistent_dma_mask to dev.coherent_dma_mask and make x86 use it in the dma_alloc_coherent() calls. This should allow me to make the aacraid set the coherent mask instead of using it's current dma_mask juggling.
-
Matthew Wilcox authored
Updates for 2.6.4 for PARISC: - defconfigs (Randolph Chung) - copyright updates (Grant Grundler) - Fix DOS hole in sys_clone (James Bottomley) - missing hardware ID (Andy Walker) - disable interrupts during cache-flushes (LaMont Jones) - Fix crash on machines with <256MB ram (Randolph Chung) - Make SuckyIO IDE work better (Randolph Chung) - Align data_start so the extable is writable (Randolph Chung) - Extensive rewrite of virtual merging code (James Bottomley) - Fix EISA, non-PCI module builds (Matthew Wilcox) - Fix Elroy PCI config space byte & word writes (Grant Grundler) - Eliminate a warning in parport_gsc (Helge Deller) - Fix endian problem with ide mmio macros (Randolph Chung) - Delete asm/keyboard.h (Matthew Wilcox) - Delete asm/md.h (Grant Grundler) - Eliminate a warning in ALSA harmony (Matthew Wilcox)
-
http://linux-sound.bkbits.net/linux-soundLinus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.5/linux
-
bk://linux-acpi.bkbits.net/linux-acpi-release-2.6.5Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.5/linux
-
bk://linux-scsi.bkbits.net/scsi-for-linus-2.6Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.5/linux
-
Andrew Morton authored
drivers/scsi/sata_vsc.c: In function `vsc_sata_interrupt': include/linux/libata.h:414: sorry, unimplemented: inlining failed in call to 'ata_host_intr': function body not available drivers/scsi/sata_vsc.c:187: sorry, unimplemented: called from here
-
Andrew Morton authored
From: Rusty Russell <rusty@rustcorp.com.au> From: Andrea Arcangeli <andrea@suse.de> We should drop module sem before calling mod->exit, for practical reasons: too many module exit functions oops or hang, resulting in a permenantly held module sem, which blocks all module ops including lsmod.
-
Andrew Morton authored
From: "David S. Miller" <davem@redhat.com> Currently, for an existing DMA mapping, there is a way to transfer buffer ownership back to the cpu, yet there is no way to give it back to the device again explicitly. The latter really is needed on platforms where the PCI subsystem does not snoop the cpu caches, MIPS is one example. Many drivers were expecting the existing DMA sync interface to handle both directions, which was wrong. Now, with this change, we have explicit interfaces for DMA syncing to/from the device and the cpu.
-
- 13 Mar, 2004 23 commits
-
-
James Bottomley authored
This simply throws out the 53c700 driver's optimistic setting of the best possible transport parameters and replaces it with DV determination. It also adds a missing report_bus_reset() callback and finally does a delayed DV on device errors.
-
Jaroslav Kysela authored
ALSA Core fixed the wrong release of id proc file.
-
Jaroslav Kysela authored
ALSA Core added the new magic numbers for atiixp and au88x0 drivers.
-
Jaroslav Kysela authored
Documentation,PCI drivers,Intel8x0-modem driver added Intel-compatible onboard MC97 modem driver by Sasha Khapyorsky <sashak@smlink.com>
-
Jaroslav Kysela authored
Documentation,PCI drivers,ATIIXP driver added snd-atiixp driver for the ATI IXP150/200/250 AC97 controllers.
-
Jaroslav Kysela authored
MIXART driver fixed the compile warning.
-
Jaroslav Kysela authored
EMU10K1/EMU10K2 driver disabled Dell OEM Emu10k1x from the pci id list. the board isn't compatible with the normal emu10k1.
-
Jaroslav Kysela authored
au88x0 driver removed EXPORT_NO_SYMBOLS.
-
Jaroslav Kysela authored
PPC Tumbler driver fixed the info callback of mixer input source (for enum type).
-
Jaroslav Kysela authored
USB generic driver added fix and workaround for the mixer problem on SB Extigy.
-
Jaroslav Kysela authored
Documentation fixed the files to include.
-
Jaroslav Kysela authored
Documentation changed the description of the buffer allocation routines for the new designed functions.
-
Jaroslav Kysela authored
PPC Tumbler driver added input source switch to select mic/line-in.
-
Jaroslav Kysela authored
Documentation,PCI drivers,au88x0 driver added the au88x0 drivers for Aureal soundcards by Manuel Jander <mjander@embedded.cl>
-
Jaroslav Kysela authored
VIA82xx driver patch was applied wrongly. fixed the rate restriction of spdif output again.
-
Jaroslav Kysela authored
DT019x driver Fixed warnings
-
Jaroslav Kysela authored
VIA82xx driver restrict the PCM sample rates to 32, 44.1 and 48kHz when the SPDIF switch is on.
-
Jaroslav Kysela authored
USB generic driver prevent twenty-seconds wait when unplugging USB MIDI device with a port subscription
-
Jaroslav Kysela authored
USB generic driver show one decimal place of momentary frequency in proc file
-
Jaroslav Kysela authored
USB generic driver use MIN_PACKS_URB as lower bound for nrpacks parameter
-
Jaroslav Kysela authored
ALSA sequencer,ALSA<-OSS sequencer use wrapper function for DELETE_PORT ioctl calls
-
Jaroslav Kysela authored
ALSA sequencer remove superfluous call to snd_seq_event_port_detach
-
Jaroslav Kysela authored
into suse.cz:/home/perex/bk/linux-sound/linux-sound
-