lowlevel.c (b981d8b3f5e008ff10d993be633ad00564fc22cd) | lowlevel.c (15aebd2866b21a568d8defec134bf29f9aea9088) |
---|---|
1/* 2 * lowlevel.c 3 * 4 * PURPOSE 5 * Low Level Device Routines for the UDF filesystem 6 * 7 * COPYRIGHT 8 * This file is distributed under the terms of the GNU General Public --- 9 unchanged lines hidden (view full) --- 18 */ 19 20#include "udfdecl.h" 21 22#include <linux/blkdev.h> 23#include <linux/cdrom.h> 24#include <asm/uaccess.h> 25 | 1/* 2 * lowlevel.c 3 * 4 * PURPOSE 5 * Low Level Device Routines for the UDF filesystem 6 * 7 * COPYRIGHT 8 * This file is distributed under the terms of the GNU General Public --- 9 unchanged lines hidden (view full) --- 18 */ 19 20#include "udfdecl.h" 21 22#include <linux/blkdev.h> 23#include <linux/cdrom.h> 24#include <asm/uaccess.h> 25 |
26#include <linux/udf_fs.h> | |
27#include "udf_sb.h" 28 29unsigned int udf_get_last_session(struct super_block *sb) 30{ 31 struct cdrom_multisession ms_info; 32 unsigned int vol_desc_start; 33 struct block_device *bdev = sb->s_bdev; 34 int i; --- 33 unchanged lines hidden --- | 26#include "udf_sb.h" 27 28unsigned int udf_get_last_session(struct super_block *sb) 29{ 30 struct cdrom_multisession ms_info; 31 unsigned int vol_desc_start; 32 struct block_device *bdev = sb->s_bdev; 33 int i; --- 33 unchanged lines hidden --- |