Skip to content

Commit

Permalink
hfs: stop using ioctl_by_bdev
Browse files Browse the repository at this point in the history
Instead just call the CDROM layer functionality directly.

Signed-off-by: Christoph Hellwig <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
Christoph Hellwig authored and axboe committed May 9, 2020
1 parent 1cd925d commit af00423
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions fs/hfs/mdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,29 +32,35 @@
static int hfs_get_last_session(struct super_block *sb,
sector_t *start, sector_t *size)
{
struct cdrom_multisession ms_info;
struct cdrom_tocentry te;
int res;
struct cdrom_device_info *cdi = disk_to_cdi(sb->s_bdev->bd_disk);

/* default values */
*start = 0;
*size = i_size_read(sb->s_bdev->bd_inode) >> 9;

if (HFS_SB(sb)->session >= 0) {
struct cdrom_tocentry te;

if (!cdi)
return -EINVAL;

te.cdte_track = HFS_SB(sb)->session;
te.cdte_format = CDROM_LBA;
res = ioctl_by_bdev(sb->s_bdev, CDROMREADTOCENTRY, (unsigned long)&te);
if (!res && (te.cdte_ctrl & CDROM_DATA_TRACK) == 4) {
*start = (sector_t)te.cdte_addr.lba << 2;
return 0;
if (cdrom_read_tocentry(cdi, &te) ||
(te.cdte_ctrl & CDROM_DATA_TRACK) != 4) {
pr_err("invalid session number or type of track\n");
return -EINVAL;
}
pr_err("invalid session number or type of track\n");
return -EINVAL;

*start = (sector_t)te.cdte_addr.lba << 2;
} else if (cdi) {
struct cdrom_multisession ms_info;

ms_info.addr_format = CDROM_LBA;
if (cdrom_multisession(cdi, &ms_info) == 0 && ms_info.xa_flag)
*start = (sector_t)ms_info.addr.lba << 2;
}
ms_info.addr_format = CDROM_LBA;
res = ioctl_by_bdev(sb->s_bdev, CDROMMULTISESSION, (unsigned long)&ms_info);
if (!res && ms_info.xa_flag)
*start = (sector_t)ms_info.addr.lba << 2;

return 0;
}

Expand Down

0 comments on commit af00423

Please sign in to comment.