Deleted Added
full compact
fs.h (243245) fs.h (243250)
1/*-
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)fs.h 8.13 (Berkeley) 3/21/95
1/*-
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)fs.h 8.13 (Berkeley) 3/21/95
30 * $FreeBSD: head/sys/ufs/ffs/fs.h 243245 2012-11-18 18:57:19Z trasz $
30 * $FreeBSD: head/sys/ufs/ffs/fs.h 243250 2012-11-18 22:03:31Z trasz $
31 */
32
33#ifndef _UFS_FFS_FS_H_
34#define _UFS_FFS_FS_H_
35
36#include <sys/mount.h>
31 */
32
33#ifndef _UFS_FFS_FS_H_
34#define _UFS_FFS_FS_H_
35
36#include <sys/mount.h>
37#include <ufs/ufs/dinode.h>
37
38/*
39 * Each disk drive contains some number of filesystems.
40 * A filesystem consists of a number of cylinder groups.
41 * Each cylinder group has inodes and data.
42 *
43 * A filesystem is described by its super-block, which in turn
44 * describes the cylinder groups. The super-block is critical

--- 730 unchanged lines hidden ---
38
39/*
40 * Each disk drive contains some number of filesystems.
41 * A filesystem consists of a number of cylinder groups.
42 * Each cylinder group has inodes and data.
43 *
44 * A filesystem is described by its super-block, which in turn
45 * describes the cylinder groups. The super-block is critical

--- 730 unchanged lines hidden ---