Deleted Added
full compact
cd9660_bmap.c (137726) cd9660_bmap.c (166639)
1/*-
2 * Copyright (c) 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley
6 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
7 * Support code is derived from software contributed to Berkeley
8 * by Atsushi Murai (amurai@spec.co.jp).

--- 21 unchanged lines hidden (view full) ---

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)cd9660_bmap.c 8.3 (Berkeley) 1/23/94
35 */
36
37#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley
6 * by Pace Willisson (pace@blitz.com). The Rock Ridge Extension
7 * Support code is derived from software contributed to Berkeley
8 * by Atsushi Murai (amurai@spec.co.jp).

--- 21 unchanged lines hidden (view full) ---

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)cd9660_bmap.c 8.3 (Berkeley) 1/23/94
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_bmap.c 137726 2004-11-15 09:18:27Z phk $");
38__FBSDID("$FreeBSD: head/sys/fs/cd9660/cd9660_bmap.c 166639 2007-02-11 13:54:25Z rodrigc $");
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/vnode.h>
43#include <sys/mount.h>
44
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/vnode.h>
43#include <sys/mount.h>
44
45#include <isofs/cd9660/iso.h>
46#include <isofs/cd9660/cd9660_node.h>
45#include
46#include
47
48/*
49 * Bmap converts a the logical block number of a file to its physical block
50 * number on the disk. The conversion is done by using the logical block
51 * number to index into the data block (extent) for the file.
52 */
53int
54cd9660_bmap(ap)

--- 50 unchanged lines hidden ---
47
48/*
49 * Bmap converts a the logical block number of a file to its physical block
50 * number on the disk. The conversion is done by using the logical block
51 * number to index into the data block (extent) for the file.
52 */
53int
54cd9660_bmap(ap)

--- 50 unchanged lines hidden ---