The patch titled SCSI-BusLogic: local_irq_disable() is redundant after local_irq_save() has been removed from the -mm tree. Its filename was scsi-buslogic-local_irq_disable-is-redundant-after-local_irq_save.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: SCSI-BusLogic: local_irq_disable() is redundant after local_irq_save() From: Jiri Kosina <jkosina@xxxxxxx> drivers/scsi/BusLogic.c::BusLogic_Command() contains local_irq_disable() call after local_irq_save(). This looks redundant. Signed-off-by: Jiri Kosina <jkosina@xxxxxxx> Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/scsi/BusLogic.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff -puN drivers/scsi/BusLogic.c~scsi-buslogic-local_irq_disable-is-redundant-after-local_irq_save drivers/scsi/BusLogic.c --- a/drivers/scsi/BusLogic.c~scsi-buslogic-local_irq_disable-is-redundant-after-local_irq_save +++ a/drivers/scsi/BusLogic.c @@ -362,10 +362,8 @@ static int BusLogic_Command(struct BusLo interrupt could occur if the IRQ Channel was previously enabled by another BusLogic Host Adapter or another driver sharing the same IRQ Channel. */ - if (!HostAdapter->IRQ_ChannelAcquired) { + if (!HostAdapter->IRQ_ChannelAcquired) local_irq_save(ProcessorFlags); - local_irq_disable(); - } /* Wait for the Host Adapter Ready bit to be set and the Command/Parameter Register Busy bit to be reset in the Status Register. _ Patches currently in -mm which might be from jkosina@xxxxxxx are origin.patch git-powerpc.patch git-scsi-misc.patch git-ipwireless_cs.patch cris-local_irq_disable-is-redundant-after-local_irq_save.patch cris-turn-local_save_flags-local_irq_disable-into-local_irq_save-in-headers.patch char-amiserial-turn-local_save_flags-local_irq_disable-into-local_irq_save.patch sysctl-mac_hid-remove-unnecessary-insert_at_head-flag.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html