denode.h (eab626f110908f209587469de08f63bf8642aa68) denode.h (c72ae1423b6f824552d0a855eba3d5b08e46a062)
1/* $FreeBSD$ */
2/* $NetBSD: denode.h,v 1.25 1997/11/17 15:36:28 ws Exp $ */
3
4/*-
5 * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
6 * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
7 * All rights reserved.
8 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).

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

134
135/*
136 * This is the in memory variant of a dos directory entry. It is usually
137 * contained within a vnode.
138 */
139struct denode {
140 struct vnode *de_vnode; /* addr of vnode we are part of */
141 u_long de_flag; /* flag bits */
1/* $FreeBSD$ */
2/* $NetBSD: denode.h,v 1.25 1997/11/17 15:36:28 ws Exp $ */
3
4/*-
5 * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
6 * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
7 * All rights reserved.
8 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).

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

134
135/*
136 * This is the in memory variant of a dos directory entry. It is usually
137 * contained within a vnode.
138 */
139struct denode {
140 struct vnode *de_vnode; /* addr of vnode we are part of */
141 u_long de_flag; /* flag bits */
142 struct cdev *de_dev; /* device where direntry lives */
143 u_long de_dirclust; /* cluster of the directory file containing this entry */
144 u_long de_diroffset; /* offset of this entry in the directory cluster */
145 u_long de_fndoffset; /* offset of found dir entry */
146 int de_fndcnt; /* number of slots before de_fndoffset */
147 long de_refcnt; /* reference count */
148 struct msdosfsmount *de_pmp; /* addr of our mount struct */
149 u_char de_Name[12]; /* name, from DOS directory entry */
150 u_char de_Attributes; /* attributes, from directory entry */

--- 135 unchanged lines hidden ---
142 u_long de_dirclust; /* cluster of the directory file containing this entry */
143 u_long de_diroffset; /* offset of this entry in the directory cluster */
144 u_long de_fndoffset; /* offset of found dir entry */
145 int de_fndcnt; /* number of slots before de_fndoffset */
146 long de_refcnt; /* reference count */
147 struct msdosfsmount *de_pmp; /* addr of our mount struct */
148 u_char de_Name[12]; /* name, from DOS directory entry */
149 u_char de_Attributes; /* attributes, from directory entry */

--- 135 unchanged lines hidden ---