Fix dnotify/close race
[linux-2.6.22.y-op.git] / fs / udf / lowlevel.c
blob08421610766737540d96abd8405fec0b14e28aed
1 /*
2 * lowlevel.c
4 * PURPOSE
5 * Low Level Device Routines for the UDF filesystem
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.
13 * (C) 1999-2001 Ben Fennema
15 * HISTORY
17 * 03/26/99 blf Created.
20 #include "udfdecl.h"
22 #include <linux/blkdev.h>
23 #include <linux/cdrom.h>
24 #include <asm/uaccess.h>
26 #include <linux/udf_fs.h>
27 #include "udf_sb.h"
29 unsigned int
30 udf_get_last_session(struct super_block *sb)
32 struct cdrom_multisession ms_info;
33 unsigned int vol_desc_start;
34 struct block_device *bdev = sb->s_bdev;
35 int i;
37 vol_desc_start=0;
38 ms_info.addr_format=CDROM_LBA;
39 i = ioctl_by_bdev(bdev, CDROMMULTISESSION, (unsigned long) &ms_info);
41 #define WE_OBEY_THE_WRITTEN_STANDARDS 1
43 if (i == 0)
45 udf_debug("XA disk: %s, vol_desc_start=%d\n",
46 (ms_info.xa_flag ? "yes" : "no"), ms_info.addr.lba);
47 #if WE_OBEY_THE_WRITTEN_STANDARDS
48 if (ms_info.xa_flag) /* necessary for a valid ms_info.addr */
49 #endif
50 vol_desc_start = ms_info.addr.lba;
52 else
54 udf_debug("CDROMMULTISESSION not supported: rc=%d\n", i);
56 return vol_desc_start;
59 unsigned long
60 udf_get_last_block(struct super_block *sb)
62 struct block_device *bdev = sb->s_bdev;
63 unsigned long lblock = 0;
65 if (ioctl_by_bdev(bdev, CDROM_LAST_WRITTEN, (unsigned long) &lblock))
66 lblock = bdev->bd_inode->i_size >> sb->s_blocksize_bits;
68 if (lblock)
69 return lblock - 1;
70 else
71 return 0;