[PATCH] revert ide-scsi highmem cleanup
Jeff Garzik <jgarzik@pobox.com> points out that this was wrong: we need to
disable local interrupts while holding KM_IRQ0 due to IRQ sharing.
And holding interrupts off during a big PIO opration is expensive, so we only
want to do that if we know the page was highmem.
So revert commit 17fd47ab4d
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
f2c84c0e84
commit
a717f77362
|
@ -180,12 +180,22 @@ static void idescsi_input_buffers (ide_drive_t *drive, idescsi_pc_t *pc, unsigne
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
count = min(pc->sg->length - pc->b_count, bcount);
|
count = min(pc->sg->length - pc->b_count, bcount);
|
||||||
buf = kmap_atomic(pc->sg->page, KM_IRQ0);
|
if (PageHighMem(pc->sg->page)) {
|
||||||
drive->hwif->atapi_input_bytes(drive,
|
unsigned long flags;
|
||||||
buf + pc->b_count + pc->sg->offset, count);
|
|
||||||
kunmap_atomic(buf, KM_IRQ0);
|
local_irq_save(flags);
|
||||||
bcount -= count;
|
buf = kmap_atomic(pc->sg->page, KM_IRQ0) +
|
||||||
pc->b_count += count;
|
pc->sg->offset;
|
||||||
|
drive->hwif->atapi_input_bytes(drive,
|
||||||
|
buf + pc->b_count, count);
|
||||||
|
kunmap_atomic(buf - pc->sg->offset, KM_IRQ0);
|
||||||
|
local_irq_restore(flags);
|
||||||
|
} else {
|
||||||
|
buf = page_address(pc->sg->page) + pc->sg->offset;
|
||||||
|
drive->hwif->atapi_input_bytes(drive,
|
||||||
|
buf + pc->b_count, count);
|
||||||
|
}
|
||||||
|
bcount -= count; pc->b_count += count;
|
||||||
if (pc->b_count == pc->sg->length) {
|
if (pc->b_count == pc->sg->length) {
|
||||||
pc->sg++;
|
pc->sg++;
|
||||||
pc->b_count = 0;
|
pc->b_count = 0;
|
||||||
|
@ -205,12 +215,22 @@ static void idescsi_output_buffers (ide_drive_t *drive, idescsi_pc_t *pc, unsign
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
count = min(pc->sg->length - pc->b_count, bcount);
|
count = min(pc->sg->length - pc->b_count, bcount);
|
||||||
buf = kmap_atomic(pc->sg->page, KM_IRQ0);
|
if (PageHighMem(pc->sg->page)) {
|
||||||
drive->hwif->atapi_output_bytes(drive,
|
unsigned long flags;
|
||||||
buf + pc->b_count + pc->sg->offset, count);
|
|
||||||
kunmap_atomic(buf, KM_IRQ0);
|
local_irq_save(flags);
|
||||||
bcount -= count;
|
buf = kmap_atomic(pc->sg->page, KM_IRQ0) +
|
||||||
pc->b_count += count;
|
pc->sg->offset;
|
||||||
|
drive->hwif->atapi_output_bytes(drive,
|
||||||
|
buf + pc->b_count, count);
|
||||||
|
kunmap_atomic(buf - pc->sg->offset, KM_IRQ0);
|
||||||
|
local_irq_restore(flags);
|
||||||
|
} else {
|
||||||
|
buf = page_address(pc->sg->page) + pc->sg->offset;
|
||||||
|
drive->hwif->atapi_output_bytes(drive,
|
||||||
|
buf + pc->b_count, count);
|
||||||
|
}
|
||||||
|
bcount -= count; pc->b_count += count;
|
||||||
if (pc->b_count == pc->sg->length) {
|
if (pc->b_count == pc->sg->length) {
|
||||||
pc->sg++;
|
pc->sg++;
|
||||||
pc->b_count = 0;
|
pc->b_count = 0;
|
||||||
|
|
Loading…
Reference in New Issue