Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 168694
b: refs/heads/master
c: 8819796
h: refs/heads/master
v: v3
  • Loading branch information
Anil Ravindranath authored and James Bottomley committed Nov 6, 2009
1 parent fa49f6b commit 24f7199
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: 3feeb89d40cc0ab3777f12571509b23da466105c
refs/heads/master: 88197966e1eeee6547764fa49bfce7e57549acd2
10 changes: 5 additions & 5 deletions trunk/drivers/scsi/pmcraid.c
Original file line number Diff line number Diff line change
Expand Up @@ -1071,7 +1071,7 @@ static struct pmcraid_cmd *pmcraid_init_hcam

ioarcb->data_transfer_length = cpu_to_le32(rcb_size);

ioadl[0].flags |= cpu_to_le32(IOADL_FLAGS_READ_LAST);
ioadl[0].flags |= IOADL_FLAGS_READ_LAST;
ioadl[0].data_len = cpu_to_le32(rcb_size);
ioadl[0].address = cpu_to_le32(dma);

Expand Down Expand Up @@ -2251,7 +2251,7 @@ static void pmcraid_request_sense(struct pmcraid_cmd *cmd)

ioadl->address = cpu_to_le64(cmd->sense_buffer_dma);
ioadl->data_len = cpu_to_le32(SCSI_SENSE_BUFFERSIZE);
ioadl->flags = cpu_to_le32(IOADL_FLAGS_LAST_DESC);
ioadl->flags = IOADL_FLAGS_LAST_DESC;

/* request sense might be called as part of error response processing
* which runs in tasklets context. It is possible that mid-layer might
Expand Down Expand Up @@ -3017,7 +3017,7 @@ static int pmcraid_build_ioadl(
ioadl[i].flags = 0;
}
/* setup last descriptor */
ioadl[i - 1].flags = cpu_to_le32(IOADL_FLAGS_LAST_DESC);
ioadl[i - 1].flags = IOADL_FLAGS_LAST_DESC;

return 0;
}
Expand Down Expand Up @@ -3387,7 +3387,7 @@ static int pmcraid_build_passthrough_ioadls(
}

/* setup the last descriptor */
ioadl[i - 1].flags = cpu_to_le32(IOADL_FLAGS_LAST_DESC);
ioadl[i - 1].flags = IOADL_FLAGS_LAST_DESC;

return 0;
}
Expand Down Expand Up @@ -5314,7 +5314,7 @@ static void pmcraid_querycfg(struct pmcraid_cmd *cmd)
cpu_to_le32(sizeof(struct pmcraid_config_table));

ioadl = &(ioarcb->add_data.u.ioadl[0]);
ioadl->flags = cpu_to_le32(IOADL_FLAGS_LAST_DESC);
ioadl->flags = IOADL_FLAGS_LAST_DESC;
ioadl->address = cpu_to_le64(pinstance->cfg_table_bus_addr);
ioadl->data_len = cpu_to_le32(sizeof(struct pmcraid_config_table));

Expand Down

0 comments on commit 24f7199

Please sign in to comment.