Skip to content

Commit

Permalink
Merge head 'upstream-fixes' of master.kernel.org:/pub/scm/linux/kerne…
Browse files Browse the repository at this point in the history
…l/git/jgarzik/libata-dev
  • Loading branch information
Linus Torvalds committed Aug 10, 2005
2 parents 6068674 + 4251743 commit 0893dd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions drivers/scsi/libata-scsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ int ata_scsi_error(struct Scsi_Host *host)
* appropriate place
*/
host->host_failed--;
INIT_LIST_HEAD(&host->eh_cmd_q);

DPRINTK("EXIT\n");
return 0;
Expand Down
2 changes: 1 addition & 1 deletion drivers/scsi/sata_sx4.c
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ static void pdc20621_dma_prep(struct ata_queued_cmd *qc)
for (i = 0; i < last; i++) {
buf[idx++] = cpu_to_le32(sg_dma_address(&sg[i]));
buf[idx++] = cpu_to_le32(sg_dma_len(&sg[i]));
total_len += sg[i].length;
total_len += sg_dma_len(&sg[i]);
}
buf[idx - 1] |= cpu_to_le32(ATA_PRD_EOT);
sgt_len = idx * 4;
Expand Down

0 comments on commit 0893dd3

Please sign in to comment.