Deleted Added
full compact
ext2_subr.c (92363) ext2_subr.c (92728)
1/*
2 * modified for Lites 1.1
3 *
4 * Aug 1995, Godmar Back (gback@cs.utah.edu)
5 * University of Utah, Department of Computer Science
6 */
7/*
8 * Copyright (c) 1982, 1986, 1989, 1993

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

32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * @(#)ext2_subr.c 8.2 (Berkeley) 9/21/93
1/*
2 * modified for Lites 1.1
3 *
4 * Aug 1995, Godmar Back (gback@cs.utah.edu)
5 * University of Utah, Department of Computer Science
6 */
7/*
8 * Copyright (c) 1982, 1986, 1989, 1993

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

32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * @(#)ext2_subr.c 8.2 (Berkeley) 9/21/93
40 * $FreeBSD: head/sys/gnu/fs/ext2fs/ext2_subr.c 92363 2002-03-15 18:49:47Z mckusick $
40 * $FreeBSD: head/sys/gnu/fs/ext2fs/ext2_subr.c 92728 2002-03-19 22:40:48Z alfred $
41 */
42
43#include <sys/param.h>
44
45#include <sys/proc.h>
46#include <sys/systm.h>
47#include <sys/bio.h>
48#include <sys/buf.h>

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

55
56#include <gnu/ext2fs/ext2_extern.h>
57#include <gnu/ext2fs/ext2_fs_sb.h>
58#include <gnu/ext2fs/fs.h>
59
60#include "opt_ddb.h"
61
62#ifdef DDB
41 */
42
43#include <sys/param.h>
44
45#include <sys/proc.h>
46#include <sys/systm.h>
47#include <sys/bio.h>
48#include <sys/buf.h>

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

55
56#include <gnu/ext2fs/ext2_extern.h>
57#include <gnu/ext2fs/ext2_fs_sb.h>
58#include <gnu/ext2fs/fs.h>
59
60#include "opt_ddb.h"
61
62#ifdef DDB
63void ext2_checkoverlap __P((struct buf *, struct inode *));
63void ext2_checkoverlap(struct buf *, struct inode *);
64#endif
65
66/*
67 * Return buffer with the contents of block "offset" from the beginning of
68 * directory "ip". If "res" is non-zero, fill it in with a pointer to the
69 * remaining space in the directory.
70 */
71int

--- 58 unchanged lines hidden ---
64#endif
65
66/*
67 * Return buffer with the contents of block "offset" from the beginning of
68 * directory "ip". If "res" is non-zero, fill it in with a pointer to the
69 * remaining space in the directory.
70 */
71int

--- 58 unchanged lines hidden ---