Re: [git patches] libata fixes

2007-10-30 Thread Junio C Hamano
Jan Engelhardt [EMAIL PROTECTED] writes: On Oct 30 2007 12:31, Linus Torvalds wrote: On Tue, 30 Oct 2007, Jeff Garzik wrote: Can we change git-am to accept two dashes as well as three? :) Well, git-am actually used to be a lot less strict about the dashes, and we've made it *more* strict

Re: [PATCH 3/3] Make ide dma blacklist handling a bit saner.

2007-05-28 Thread Junio C Hamano
Bartlomiej Zolnierkiewicz [EMAIL PROTECTED] writes: The change itself looks good but IMO it is worth doing it before patch #2/3 (it would also make it possible for me to merge this patch immediately). Yes, I should have considered that the earlier #2/3 needs coordination between you and Jeff.

[PATCH 1/3] ide_in_drive_list(): accept NULL as the wildcard for firmware revision.

2007-05-28 Thread Junio C Hamano
to keep any out-of-tree ide driver that feeds its own table that uses ALL as the wildcard to ide_in_drive_list() function from breaking. Signed-off-by: Junio C Hamano [EMAIL PROTECTED] --- * This is a respin of earlier 3/3 Make ide dma blacklist handling a bit saner. drivers/ide/ide-dma.c | 67

[PATCH 2/3] mips au1xxx_ide.h: use NULL as firmware-revision wildcard.

2007-05-28 Thread Junio C Hamano
This updates the DMA whitelist in MIPS specific au1xxx ide driver to use NULL instead of ALL as the wildcard. Signed-off-by: Junio C Hamano [EMAIL PROTECTED] --- * This is a respin of earlier 3/3 Make ide dma blacklist handling a bit saner. include/asm-mips/mach-au1x00/au1xxx_ide.h | 28

[PATCH 3/3] ide_in_drive_list(): ALL is not a wildcard anymore.

2007-05-28 Thread Junio C Hamano
This removes the support to treat ALL as a wildcard for firmware revision. This is made a separate patch, as it will break out-of-tree ide drivers that feed its own table that uses ALL as the wildcard to ide_in_drive_list(). Signed-off-by: Junio C Hamano [EMAIL PROTECTED

[PATCH 2/3] Unify dma blacklist in ide-dma.c and libata-core.c

2007-05-21 Thread Junio C Hamano
This introduces a shared header file that defines the entries for two dma blacklists in ide-dma.c and libata-core.c to make it easier to keep them in sync. Signed-off-by: Junio C Hamano [EMAIL PROTECTED] --- * Removes more lines than it adds. I am not proud of the DMA_BLACK_LIST macro

[PATCH 3/3] Make ide dma blacklist handling a bit saner.

2007-05-21 Thread Junio C Hamano
expression to convert NULL to ALL. Signed-off-by: Junio C Hamano [EMAIL PROTECTED] --- * I do not really know what I am doing in the mips area, but that architecture specific table seems to be used by the same ide_in_drive_list() function, so the entries are matched to the updated code. drivers

[PATCH] Match DMA blacklist entries between ide-dma.c and libata-core.c

2007-05-21 Thread Junio C Hamano
There are a few entries in ata_device_blacklist[] in libata-core.c marked with HORKAGE_NODMA but are missing from drive_blacklist[] in ide-dma.c. This patch makes the lists in sync. Also remove a duplicated entry for SanDisk SDP3B-64. Signed-off-by: Junio C Hamano [EMAIL PROTECTED