aboutsummaryrefslogtreecommitdiffstats
path: root/fs/udf/lowlevel.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /fs/udf/lowlevel.c
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'fs/udf/lowlevel.c')
-rw-r--r--fs/udf/lowlevel.c77
1 files changed, 77 insertions, 0 deletions
diff --git a/fs/udf/lowlevel.c b/fs/udf/lowlevel.c
new file mode 100644
index 000000000000..2da5087dfe05
--- /dev/null
+++ b/fs/udf/lowlevel.c
@@ -0,0 +1,77 @@
1/*
2 * lowlevel.c
3 *
4 * PURPOSE
5 * Low Level Device Routines for the UDF filesystem
6 *
7 * CONTACTS
8 * E-mail regarding any portion of the Linux UDF file system should be
9 * directed to the development team mailing list (run by majordomo):
10 * linux_udf@hpesjro.fc.hp.com
11 *
12 * COPYRIGHT
13 * This file is distributed under the terms of the GNU General Public
14 * License (GPL). Copies of the GPL can be obtained from:
15 * ftp://prep.ai.mit.edu/pub/gnu/GPL
16 * Each contributing author retains all rights to their own work.
17 *
18 * (C) 1999-2001 Ben Fennema
19 *
20 * HISTORY
21 *
22 * 03/26/99 blf Created.
23 */
24
25#include "udfdecl.h"
26
27#include <linux/blkdev.h>
28#include <linux/cdrom.h>
29#include <asm/uaccess.h>
30
31#include <linux/udf_fs.h>
32#include "udf_sb.h"
33
34unsigned int
35udf_get_last_session(struct super_block *sb)
36{
37 struct cdrom_multisession ms_info;
38 unsigned int vol_desc_start;
39 struct block_device *bdev = sb->s_bdev;
40 int i;
41
42 vol_desc_start=0;
43 ms_info.addr_format=CDROM_LBA;
44 i = ioctl_by_bdev(bdev, CDROMMULTISESSION, (unsigned long) &ms_info);
45
46#define WE_OBEY_THE_WRITTEN_STANDARDS 1
47
48 if (i == 0)
49 {
50 udf_debug("XA disk: %s, vol_desc_start=%d\n",
51 (ms_info.xa_flag ? "yes" : "no"), ms_info.addr.lba);
52#if WE_OBEY_THE_WRITTEN_STANDARDS
53 if (ms_info.xa_flag) /* necessary for a valid ms_info.addr */
54#endif
55 vol_desc_start = ms_info.addr.lba;
56 }
57 else
58 {
59 udf_debug("CDROMMULTISESSION not supported: rc=%d\n", i);
60 }
61 return vol_desc_start;
62}
63
64unsigned long
65udf_get_last_block(struct super_block *sb)
66{
67 struct block_device *bdev = sb->s_bdev;
68 unsigned long lblock = 0;
69
70 if (ioctl_by_bdev(bdev, CDROM_LAST_WRITTEN, (unsigned long) &lblock))
71 lblock = bdev->bd_inode->i_size >> sb->s_blocksize_bits;
72
73 if (lblock)
74 return lblock - 1;
75 else
76 return 0;
77}