pktcdvd.c (11e4afb49b7fa1fc8e1ffd850c1806dd86a08204) pktcdvd.c (7b6d91daee5cac6402186ff224c3af39d79f4a0e)
1/*
2 * Copyright (C) 2000 Jens Axboe <axboe@suse.de>
3 * Copyright (C) 2001-2004 Peter Osterlund <petero2@telia.com>
4 * Copyright (C) 2006 Thomas Maier <balagi@justmail.de>
5 *
6 * May be copied or modified under the terms of the GNU General Public
7 * License. See linux/COPYING for more information.
8 *

--- 1207 unchanged lines hidden (view full) ---

1216 new_sector = new_block * (CD_FRAMESIZE >> 9);
1217 pkt->sector = new_sector;
1218
1219 pkt->bio->bi_sector = new_sector;
1220 pkt->bio->bi_next = NULL;
1221 pkt->bio->bi_flags = 1 << BIO_UPTODATE;
1222 pkt->bio->bi_idx = 0;
1223
1/*
2 * Copyright (C) 2000 Jens Axboe <axboe@suse.de>
3 * Copyright (C) 2001-2004 Peter Osterlund <petero2@telia.com>
4 * Copyright (C) 2006 Thomas Maier <balagi@justmail.de>
5 *
6 * May be copied or modified under the terms of the GNU General Public
7 * License. See linux/COPYING for more information.
8 *

--- 1207 unchanged lines hidden (view full) ---

1216 new_sector = new_block * (CD_FRAMESIZE >> 9);
1217 pkt->sector = new_sector;
1218
1219 pkt->bio->bi_sector = new_sector;
1220 pkt->bio->bi_next = NULL;
1221 pkt->bio->bi_flags = 1 << BIO_UPTODATE;
1222 pkt->bio->bi_idx = 0;
1223
1224 BUG_ON(pkt->bio->bi_rw != (1 << BIO_RW));
1224 BUG_ON(pkt->bio->bi_rw != REQ_WRITE);
1225 BUG_ON(pkt->bio->bi_vcnt != pkt->frames);
1226 BUG_ON(pkt->bio->bi_size != pkt->frames * CD_FRAMESIZE);
1227 BUG_ON(pkt->bio->bi_end_io != pkt_end_io_packet_write);
1228 BUG_ON(pkt->bio->bi_private != pkt);
1229
1230 drop_super(sb);
1231 return 1;
1232

--- 1878 unchanged lines hidden ---
1225 BUG_ON(pkt->bio->bi_vcnt != pkt->frames);
1226 BUG_ON(pkt->bio->bi_size != pkt->frames * CD_FRAMESIZE);
1227 BUG_ON(pkt->bio->bi_end_io != pkt_end_io_packet_write);
1228 BUG_ON(pkt->bio->bi_private != pkt);
1229
1230 drop_super(sb);
1231 return 1;
1232

--- 1878 unchanged lines hidden ---