- 17 Mar, 2004 3 commits
-
-
Bartlomiej Zolnierkiewicz authored
All users of hwif->mmio correctly handle resources themselves (hwif->mmio == 2) so remove ide_mmio_dma() and ide_release_mmio_dma().
-
Bartlomiej Zolnierkiewicz authored
Nowadays buddha.c, gayle.c and macide.c handle resources themselves (hwif->mmio == 2). Acked by Geert.
-
Bartlomiej Zolnierkiewicz authored
It's write-only these days.
-
- 16 Mar, 2004 37 commits
-
-
Bartlomiej Zolnierkiewicz authored
From: Boehm Olaf <olaf.boehm@lanner.de> From: Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz> Wider range for 33MHz timing and PLL setup for HPT374 (using the HPT370A timing table, as it is the same as used in the "opensource" driver by HighPoint). fixes bugzilla bugs #2209 and #2271
-
Wojciech Cieciwa authored
cdu31a.c needs tmp_irq outside of the block it is declared in. Move it to the outer block.
-
Andrew Morton authored
On x84_64, page->flags is no longer unsigned long.
-
Andrew Morton authored
From: Dave Jones <davej@redhat.com> These options are only ever referenced in the defconfigs of various archs now.
-
Andrew Morton authored
From: Arun Sharma <arun.sharma@intel.com> The current Linux implementation of shmat() insists on SHMLBA alignment even when shmflg & SHM_RND == 0. This is not consistent with the man pages and the single UNIX spec, which require only a page-aligned address. However, some architectures require a SHMLBA alignment for correctness in all cases. Such architectures use __ARCH_FORCE_SHMLBA.
-
Andrew Morton authored
From: <mikem@beardog.cca.cpqcorp.net> * Examines rc of pci_register_driver and returns
-
Andrew Morton authored
From: <mikem@beardog.cca.cpqcorp.net> - Change to use pci APIs (change from 2.4.18 to 2.4.19) This also includes eisa detection fix during initialization which was missing from 2.4.19 but fixed in 2.4.25
-
Andrew Morton authored
From: <mikem@beardog.cca.cpqcorp.net> * cpqarray in kernel 2.6.1 seems to be based from 2.4.18 kernel with specific 2.6.x stuff added. * Defines io_mem_addr and io_mem_length to replace ioaddr (change from 2.4.18 to 2.4.19)
-
Andrew Morton authored
From: <mikem@beardog.cca.cpqcorp.net> * Fix for segmentation fault when calling rmmod
-
Andrew Morton authored
From: <mikem@beardog.cca.cpqcorp.net> The following patch bumps the driver version to 2.6.0. Please apply in order.
-
Andrew Morton authored
From: "Cagle, John (ISS-Houston)" <john.cagle@hp.com> Patch 3 adds all the new official device registrations that weren't already there. This brings devices.txt up-to-date with LANANA.
-
Andrew Morton authored
From: "Cagle, John (ISS-Houston)" <john.cagle@hp.com> Patch 2 fixes some typos in devices.txt and removes ancient devices never used. Pretty obvious stuff.
-
Andrew Morton authored
From: "Cagle, John (ISS-Houston)" <john.cagle@hp.com> Patch 1 cleans up the format by making devices.txt easily parsable. Mainly this involved adding the word "block" after all the block major numbers since the previous format didn't include it.
-
Andrew Morton authored
Make the handling of the hugetlb-backed shm file's name counter SMP-safe. (What stops hugetlb_zero_setup() racing with umount?)
-
Andrew Morton authored
From: "Kenneth Chen" <kenneth.w.chen@intel.com> Even though there is a CONFIG_MAX_RAW_DEVS option, it doesn't actually increase the number of raw devices beyond 256 because during the char registration, it uses the standard register_chrdev() interface which has hard coded 256 minor in it. Here is a patch that fix this problem by using register_chrdev_region() and cdev_(init/add/del) functions.
-
Andrew Morton authored
From: Andy Whitcroft <andyw@uk.ibm.com> The vsyscall implementation for ia32 provides two different vsyscall pages; one to use int80 and the other to use sysenter. Each includes a common signal trailer. The kernel requires the alignment of routines in this trailer be consistent in both copies. However this is not enforced at compile time. Failure to maintain this alignment typically leads to an obscure SIGSEGV in init during boot. This critical alignment requirement is not well documented. Below is a patch to better document the alignment requirements and to enforce the requirement.
-
Andrew Morton authored
From: Martin Schwidefsky <schwidefsky@de.ibm.com> tape driver fixes: - Link from ccw device to class device in sysfs. - Cosmetic changes. - Add copyright statements.
-
Andrew Morton authored
From: Martin Schwidefsky <schwidefsky@de.ibm.com> Fix for z/VM monitor stream: - Add try_module_get and module_put to the [un]register functions. - Some code beautification.
-
Andrew Morton authored
From: Martin Schwidefsky <schwidefsky@de.ibm.com> dasd driver fixes: - Remove additional dasd attributes for a ccw-device if the discipline (=driver) gets unloaded. - Fix race of dasd_generic_offline against dasd_open. - Remove irq_exit calls from diag interrupt handler. The irq_enter/ irq_exit is done in the external interrupt handler.
-
Andrew Morton authored
From: Martin Schwidefsky <schwidefsky@de.ibm.com> network driver fixes: - Use SET_NETDEV_DEV to create the link from the network device to the physical device. Remove link from physical to network device. - Remove some unnecessary casts in netiucv. - Add missing strings to dev_stat_names & dev_event_names. - Add missing preempt_disable/preempt_enable pairs in iucv. - Allow to change the peer username in netiucv.
-
Andrew Morton authored
From: Martin Schwidefsky <schwidefsky@de.ibm.com> sclp console fixes: - Replace irq_enter/irq_exit pair with Add local_bh_enable/local_bh_disable.
-
Andrew Morton authored
From: Martin Schwidefsky <schwidefsky@de.ibm.com> Common i/o layer fixes: - Improve blacklist argument parsing. - Fix device recognition for devices where SenseID fails. - Don't try to set a device online that has no driver. - Chain a release ccw to the unconditional reserve ccw for forced online. - Fix irb accumulation for pure status pending with eswf set. - Fix rc handling in qdio_shutdown. - Improve retry behavious for busy conditions on qdio. - Fix activity check in ccw_device_start/read_dev_chars and read_conf_data.
-
Andrew Morton authored
From: Martin Schwidefsky <schwidefsky@de.ibm.com> s390 core changes: - Merge 31 and 64 bit NR_CPUS config option. Default to 32 cpus. - Remove unused system calls from compat_linux.c. - Add statfs64 and fstatfs64. Reserve system call number for remap_file_pages. - Merge do_signal32 into do_signal. - Don't remove the per bit and the program mask from the user psw due to a signal. - Fix a problem with gdb and interrupted system calls. - Fix single stepping of interrupted system calls. - Fix compiler warnings in bitops.h.
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> bitops.c was a bit of a mess wrt formatting so run it through Lindent. No code changes.
-
Andrew Morton authored
From: Tom Rini <trini@kernel.crashing.org> When I converted the use of PCI_DMA_foo constants to DMA_foo constants, I forgot that it's PCI_DMA_FROMDEVICE and DMA_FROM_DEVICE. The following fixes that.
-
Andrew Morton authored
From: Tom Rini <trini@kernel.crashing.org> include/asm-ppc/dma-mapping.h was made to be a 'real' header recently and therefore missed out on the updates that davem did to all of the other versions. This updates <asm-ppc/dma-mapping.h> to match what's expected now.
-
Andrew Morton authored
From: Tom Rini <trini@kernel.crashing.org> When Dave Miller updated <asm-ppc/pci.h> for the _for_device and _for_cpu portions of the PCI DMA API, he assumed that on PPC32 consistent_sync* would also need to be changed for device or cpu. This is not the case, so what this does is the pci_*_for_{cpu,device} calls call consistent_sync{,page} again.
-
Andrew Morton authored
From: Tom Rini <trini@kernel.crashing.org> Fix a cut & paste error in forward porting from 2.4, we don't reference dev->bus or dev->devfn, both are passed as arguments.
-
bk://gkernel.bkbits.net/misc-2.6Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.5/linux
-
Andi Kleen authored
Fix memory corruption in the HT init on x86-64 recently introduced by me. Fix from from Suresh B. Siddha.
-
Chen Yang authored
- Chen Yang's fix to work with NGROUPS - Chen Yang's fix to handle file deletion - Remove TCGETS handling and return -ENOTTY for unknown ioctl code. - Removed InterMezzo from BROKEN state
-
Jeff Garzik authored
-
Anton Blanchard authored
The proc_rtas_init call in procfs was removed (replaced with an initcall) but the prototype was still hiding. Kill it.
-
Bartlomiej Zolnierkiewicz authored
From: Andre Hedrick <andre@linux-ide.org> Tested on Epox 8K9A3+ and 4PCA3+ by Tomi Orava <Tomi.Orava@ncircle.nullnet.fi>.
-
Bartlomiej Zolnierkiewicz authored
It was tested by a few people and has been in -mm since 2.6.4-rc2-mm1.
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
ATAPI multi-lun support has been broken for a long time. It used to be that "(drive->id->last_id & 0x7) + 1" was used as shost->max_lun and the "hdXlun=" kernel parameter could be used to override this value. However it was far from optimal: - people played with "hdXlun=" and then complained about multiple instances of the same device (most ATAPI drives respond to each LUN) - probably some devices return 7 not 0 in id->last_id (=> 7 x same device) This patch from Willem Riede <wrlk@riede.org> fixes it w/o need for "hdXlun=" option. It was tested by Willem on ATAPI PD/CD drive.
-