Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[linux-2.6-block.git] / fs / udf / lowlevel.c
CommitLineData
1da177e4
LT
1/*
2 * lowlevel.c
3 *
4 * PURPOSE
5 * Low Level Device Routines for the UDF filesystem
6 *
1da177e4
LT
7 * COPYRIGHT
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
12 *
13 * (C) 1999-2001 Ben Fennema
14 *
15 * HISTORY
16 *
17 * 03/26/99 blf Created.
18 */
19
20#include "udfdecl.h"
21
22#include <linux/blkdev.h>
23#include <linux/cdrom.h>
24#include <asm/uaccess.h>
25
1da177e4
LT
26#include "udf_sb.h"
27
cb00ea35 28unsigned int udf_get_last_session(struct super_block *sb)
1da177e4
LT
29{
30 struct cdrom_multisession ms_info;
31 unsigned int vol_desc_start;
32 struct block_device *bdev = sb->s_bdev;
33 int i;
34
cb00ea35
CG
35 vol_desc_start = 0;
36 ms_info.addr_format = CDROM_LBA;
37 i = ioctl_by_bdev(bdev, CDROMMULTISESSION, (unsigned long)&ms_info);
1da177e4
LT
38
39#define WE_OBEY_THE_WRITTEN_STANDARDS 1
40
cb00ea35 41 if (i == 0) {
1da177e4 42 udf_debug("XA disk: %s, vol_desc_start=%d\n",
cb00ea35 43 (ms_info.xa_flag ? "yes" : "no"), ms_info.addr.lba);
1da177e4 44#if WE_OBEY_THE_WRITTEN_STANDARDS
28de7948 45 if (ms_info.xa_flag) /* necessary for a valid ms_info.addr */
1da177e4
LT
46#endif
47 vol_desc_start = ms_info.addr.lba;
cb00ea35 48 } else {
1da177e4
LT
49 udf_debug("CDROMMULTISESSION not supported: rc=%d\n", i);
50 }
51 return vol_desc_start;
52}
53
cb00ea35 54unsigned long udf_get_last_block(struct super_block *sb)
1da177e4
LT
55{
56 struct block_device *bdev = sb->s_bdev;
57 unsigned long lblock = 0;
58
28de7948 59 if (ioctl_by_bdev(bdev, CDROM_LAST_WRITTEN, (unsigned long) &lblock))
1da177e4
LT
60 lblock = bdev->bd_inode->i_size >> sb->s_blocksize_bits;
61
62 if (lblock)
63 return lblock - 1;
64 else
65 return 0;
66}