Lines Matching refs:this_count
323 int this_count = scsi_bufflen(SCpnt); in sr_done() local
324 int good_bytes = (result == 0 ? this_count : 0); in sr_done()
361 if (good_bytes < 0 || good_bytes >= this_count) in sr_done()
377 good_bytes = this_count; in sr_done()
390 int block = 0, this_count, s_size; in sr_init_command() local
481 this_count = (scsi_bufflen(SCpnt) >> 9) / (s_size >> 9); in sr_init_command()
488 this_count, blk_rq_sectors(rq))); in sr_init_command()
493 if (this_count > 0xffff) { in sr_init_command()
494 this_count = 0xffff; in sr_init_command()
495 SCpnt->sdb.length = this_count * s_size; in sr_init_command()
503 SCpnt->cmnd[7] = (unsigned char) (this_count >> 8) & 0xff; in sr_init_command()
504 SCpnt->cmnd[8] = (unsigned char) this_count & 0xff; in sr_init_command()
512 SCpnt->underflow = this_count << 9; in sr_init_command()