ide-tape: Buildfix when IDETAPE_DEBUG_LOG is set to 1.
The format specifier for rq->sector didn't specify the proper size and signedness. Borislav Petkov discovered that the signedness for rq->nr_sectors and rq->current_nr_sectors also were incorrect. Signed-off-by: Mark de Wever <koraq@xs4all.nl> Acked-by: Borislav Petkov <petkovbb@gmail.com> [bart: remove trailing whitespace] Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
f6bccf6954
commit
730616b202
1 changed files with 4 additions and 3 deletions
|
@ -978,9 +978,10 @@ static ide_startstop_t idetape_do_request(ide_drive_t *drive,
|
|||
struct request *postponed_rq = tape->postponed_rq;
|
||||
u8 stat;
|
||||
|
||||
debug_log(DBG_SENSE, "sector: %ld, nr_sectors: %ld,"
|
||||
" current_nr_sectors: %d\n",
|
||||
rq->sector, rq->nr_sectors, rq->current_nr_sectors);
|
||||
debug_log(DBG_SENSE, "sector: %llu, nr_sectors: %lu,"
|
||||
" current_nr_sectors: %u\n",
|
||||
(unsigned long long)rq->sector, rq->nr_sectors,
|
||||
rq->current_nr_sectors);
|
||||
|
||||
if (!blk_special_request(rq)) {
|
||||
/* We do not support buffer cache originated requests. */
|
||||
|
|
Loading…
Reference in a new issue