diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2007-08-16 07:43:12 -0400 |
---|---|---|
committer | Jens Axboe <axboe@carl.home.kernel.dk> | 2007-10-10 03:25:56 -0400 |
commit | 6c92e699b56287da582ccb12a64b959b6d6109ba (patch) | |
tree | ac8c9f26640ff8b35cd96f8222f8ce84ba2c53e5 /drivers/s390/block/dasd_diag.c | |
parent | bc1c56fde6dd1c85e2047c276456c07bd4508b5c (diff) |
Fixup rq_for_each_segment() indentation
Remove one level of nesting where appropriate.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'drivers/s390/block/dasd_diag.c')
-rw-r--r-- | drivers/s390/block/dasd_diag.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/drivers/s390/block/dasd_diag.c b/drivers/s390/block/dasd_diag.c index 6bb9676f203e..571320ab9e1a 100644 --- a/drivers/s390/block/dasd_diag.c +++ b/drivers/s390/block/dasd_diag.c | |||
@@ -493,10 +493,10 @@ dasd_diag_build_cp(struct dasd_device * device, struct request *req) | |||
493 | /* Check struct bio and count the number of blocks for the request. */ | 493 | /* Check struct bio and count the number of blocks for the request. */ |
494 | count = 0; | 494 | count = 0; |
495 | rq_for_each_segment(bv, req, iter) { | 495 | rq_for_each_segment(bv, req, iter) { |
496 | if (bv->bv_len & (blksize - 1)) | 496 | if (bv->bv_len & (blksize - 1)) |
497 | /* Fba can only do full blocks. */ | 497 | /* Fba can only do full blocks. */ |
498 | return ERR_PTR(-EINVAL); | 498 | return ERR_PTR(-EINVAL); |
499 | count += bv->bv_len >> (device->s2b_shift + 9); | 499 | count += bv->bv_len >> (device->s2b_shift + 9); |
500 | } | 500 | } |
501 | /* Paranoia. */ | 501 | /* Paranoia. */ |
502 | if (count != last_rec - first_rec + 1) | 502 | if (count != last_rec - first_rec + 1) |
@@ -514,16 +514,16 @@ dasd_diag_build_cp(struct dasd_device * device, struct request *req) | |||
514 | dbio = dreq->bio; | 514 | dbio = dreq->bio; |
515 | recid = first_rec; | 515 | recid = first_rec; |
516 | rq_for_each_segment(bv, req, iter) { | 516 | rq_for_each_segment(bv, req, iter) { |
517 | dst = page_address(bv->bv_page) + bv->bv_offset; | 517 | dst = page_address(bv->bv_page) + bv->bv_offset; |
518 | for (off = 0; off < bv->bv_len; off += blksize) { | 518 | for (off = 0; off < bv->bv_len; off += blksize) { |
519 | memset(dbio, 0, sizeof (struct dasd_diag_bio)); | 519 | memset(dbio, 0, sizeof (struct dasd_diag_bio)); |
520 | dbio->type = rw_cmd; | 520 | dbio->type = rw_cmd; |
521 | dbio->block_number = recid + 1; | 521 | dbio->block_number = recid + 1; |
522 | dbio->buffer = dst; | 522 | dbio->buffer = dst; |
523 | dbio++; | 523 | dbio++; |
524 | dst += blksize; | 524 | dst += blksize; |
525 | recid++; | 525 | recid++; |
526 | } | 526 | } |
527 | } | 527 | } |
528 | cqr->retries = DIAG_MAX_RETRIES; | 528 | cqr->retries = DIAG_MAX_RETRIES; |
529 | cqr->buildclk = get_clock(); | 529 | cqr->buildclk = get_clock(); |