Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 77036
b: refs/heads/master
c: 4a03d90
h: refs/heads/master
v: v3
  • Loading branch information
Rusty Russell authored and James Bottomley committed Jan 12, 2008
1 parent f03ab14 commit 7f615a5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 21 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: a8aae4d3427a5cf7c92b50125e35ea6cb9ba7394
refs/heads/master: 4a03d90e35bc5273d27301fa669d4b2103196f94
15 changes: 3 additions & 12 deletions trunk/drivers/scsi/scsi_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,6 @@ void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes)
*
* Returns: 0 on success
* BLKPREP_DEFER if the failure is retryable
* BLKPREP_KILL if the failure is fatal
*/
static int scsi_init_io(struct scsi_cmnd *cmd)
{
Expand Down Expand Up @@ -1138,17 +1137,9 @@ static int scsi_init_io(struct scsi_cmnd *cmd)
* each segment.
*/
count = blk_rq_map_sg(req->q, req, cmd->request_buffer);
if (likely(count <= cmd->use_sg)) {
cmd->use_sg = count;
return BLKPREP_OK;
}

printk(KERN_ERR "Incorrect number of segments after building list\n");
printk(KERN_ERR "counted %d, received %d\n", count, cmd->use_sg);
printk(KERN_ERR "req nr_sec %lu, cur_nr_sec %u\n", req->nr_sectors,
req->current_nr_sectors);

return BLKPREP_KILL;
BUG_ON(count > cmd->use_sg);
cmd->use_sg = count;
return BLKPREP_OK;
}

static struct scsi_cmnd *scsi_get_cmd_from_req(struct scsi_device *sdev,
Expand Down
11 changes: 3 additions & 8 deletions trunk/drivers/scsi/scsi_tgt_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -368,14 +368,9 @@ static int scsi_tgt_init_cmd(struct scsi_cmnd *cmd, gfp_t gfp_mask)
dprintk("cmd %p cnt %d %lu\n", cmd, scsi_sg_count(cmd),
rq_data_dir(rq));
count = blk_rq_map_sg(rq->q, rq, scsi_sglist(cmd));
if (likely(count <= scsi_sg_count(cmd))) {
cmd->use_sg = count;
return 0;
}

eprintk("cmd %p cnt %d\n", cmd, scsi_sg_count(cmd));
scsi_free_sgtable(cmd);
return -EINVAL;
BUG_ON(count > cmd->use_sg);
cmd->use_sg = count;
return 0;
}

/* TODO: test this crap and replace bio_map_user with new interface maybe */
Expand Down

0 comments on commit 7f615a5

Please sign in to comment.