Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 137674
b: refs/heads/master
c: 2230d90
h: refs/heads/master
v: v3
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Mar 27, 2009
1 parent e1eb089 commit 9158b15
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d364c7f50b3bb6dc77259974038567b821e2cf0a
refs/heads/master: 2230d90dd889e35da2728b6f6ebf25fb5a6499bd
5 changes: 4 additions & 1 deletion trunk/drivers/ide/ide-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ ide_startstop_t ide_dma_intr(ide_drive_t *drive)
if (!dma_stat) {
struct ide_cmd *cmd = &hwif->cmd;

ide_finish_cmd(drive, cmd, stat);
if ((cmd->tf_flags & IDE_TFLAG_FS) == 0)
ide_finish_cmd(drive, cmd, stat);
else
ide_end_request(drive, 1, cmd->rq->nr_sectors);
return ide_stopped;
}
printk(KERN_ERR "%s: %s: bad DMA status (0x%02x)\n",
Expand Down
24 changes: 9 additions & 15 deletions trunk/drivers/ide/ide-taskfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,12 +155,8 @@ static ide_startstop_t task_no_data_intr(ide_drive_t *drive)

if (blk_pm_request(rq))
ide_complete_pm_rq(drive, rq);
else {
u8 err = ide_read_error(drive);

ide_complete_cmd(drive, cmd, stat, err);
ide_complete_rq(drive, err);
}
else
ide_finish_cmd(drive, cmd, stat);
}

return ide_stopped;
Expand Down Expand Up @@ -293,15 +289,10 @@ static void ide_error_cmd(ide_drive_t *drive, struct ide_cmd *cmd)

void ide_finish_cmd(ide_drive_t *drive, struct ide_cmd *cmd, u8 stat)
{
if ((cmd->tf_flags & IDE_TFLAG_FS) == 0) {
u8 err = ide_read_error(drive);
u8 err = ide_read_error(drive);

ide_complete_cmd(drive, cmd, stat, err);
ide_complete_rq(drive, err);
return;
}

ide_end_request(drive, 1, cmd->rq->nr_sectors);
ide_complete_cmd(drive, cmd, stat, err);
ide_complete_rq(drive, err);
}

/*
Expand Down Expand Up @@ -356,7 +347,10 @@ static ide_startstop_t task_pio_intr(ide_drive_t *drive)
ide_set_handler(drive, &task_pio_intr, WAIT_WORSTCASE, NULL);
return ide_started;
out_end:
ide_finish_cmd(drive, cmd, stat);
if ((cmd->tf_flags & IDE_TFLAG_FS) == 0)
ide_finish_cmd(drive, cmd, stat);
else
ide_end_request(drive, 1, cmd->rq->nr_sectors);
return ide_stopped;
out_err:
ide_error_cmd(drive, cmd);
Expand Down

0 comments on commit 9158b15

Please sign in to comment.