Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 55809
b: refs/heads/master
c: 213d7bb
h: refs/heads/master
i:
  55807: d3f5cf8
v: v3
  • Loading branch information
Kristian Høgsberg authored and Stefan Richter committed May 10, 2007
1 parent fd4c696 commit 9e9e241
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 43 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: 36abb3b18e26bf980e8529512853c5d73971a48b
refs/heads/master: 213d7bbd76673fb1b26f1786af180bac07e57652
43 changes: 1 addition & 42 deletions trunk/drivers/firewire/fw-sbp2.c
Original file line number Diff line number Diff line change
Expand Up @@ -976,34 +976,6 @@ static int sbp2_command_orb_map_scatterlist(struct sbp2_command_orb *orb)
return -ENOMEM;
}

static int sbp2_command_orb_map_buffer(struct sbp2_command_orb *orb)
{
struct sbp2_device *sd =
(struct sbp2_device *)orb->cmd->device->host->hostdata;
struct fw_unit *unit = sd->unit;
struct fw_device *device = fw_device(unit->device.parent);

/*
* As for map_scatterlist, we need to fill in the high bits of
* the data_descriptor pointer.
*/

orb->request_buffer_bus =
dma_map_single(device->card->device,
orb->cmd->request_buffer,
orb->cmd->request_bufflen,
orb->cmd->sc_data_direction);
if (dma_mapping_error(orb->request_buffer_bus))
return -ENOMEM;

orb->request.data_descriptor.high = sd->address_high;
orb->request.data_descriptor.low = orb->request_buffer_bus;
orb->request.misc |=
COMMAND_ORB_DATA_SIZE(orb->cmd->request_bufflen);

return 0;
}

/* SCSI stack integration */

static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
Expand Down Expand Up @@ -1063,21 +1035,8 @@ static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
orb->request.misc |=
COMMAND_ORB_DIRECTION(SBP2_DIRECTION_TO_MEDIA);

if (cmd->use_sg) {
if (sbp2_command_orb_map_scatterlist(orb) < 0)
goto fail_map_payload;
} else if (cmd->request_bufflen > SBP2_MAX_SG_ELEMENT_LENGTH) {
/*
* FIXME: Need to split this into a sg list... but
* could we get the scsi or blk layer to do that by
* reporting our max supported block size?
*/
fw_error("command > 64k\n");
if (cmd->use_sg && sbp2_command_orb_map_scatterlist(orb) < 0)
goto fail_map_payload;
} else if (cmd->request_bufflen > 0) {
if (sbp2_command_orb_map_buffer(orb) < 0)
goto fail_map_payload;
}

fw_memcpy_to_be32(&orb->request, &orb->request, sizeof orb->request);

Expand Down

0 comments on commit 9e9e241

Please sign in to comment.