Deleted Added
full compact
devfs.h (105212) devfs.h (107698)
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2000
5 * Poul-Henning Kamp. All rights reserved.
6 * Copyright (c) 2002
7 * Dima Dorfman. All rights reserved.
8 *

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

28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)kernfs.h 8.6 (Berkeley) 3/29/95
34 * From: FreeBSD: src/sys/miscfs/kernfs/kernfs.h 1.14
35 *
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2000
5 * Poul-Henning Kamp. All rights reserved.
6 * Copyright (c) 2002
7 * Dima Dorfman. All rights reserved.
8 *

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

28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)kernfs.h 8.6 (Berkeley) 3/29/95
34 * From: FreeBSD: src/sys/miscfs/kernfs/kernfs.h 1.14
35 *
36 * $FreeBSD: head/sys/fs/devfs/devfs.h 105212 2002-10-16 08:04:11Z phk $
36 * $FreeBSD: head/sys/fs/devfs/devfs.h 107698 2002-12-09 03:44:28Z rwatson $
37 */
38
39#ifndef _FS_DEVFS_DEVFS_H_
40#define _FS_DEVFS_DEVFS_H_
41
42#define DEVFS_MAGIC 0xdb0a087a
43
44/*

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

163 struct timespec de_atime;
164 struct timespec de_mtime;
165 struct timespec de_ctime;
166 struct vnode *de_vnode;
167 char * de_symlink;
168};
169
170struct devfs_mount {
37 */
38
39#ifndef _FS_DEVFS_DEVFS_H_
40#define _FS_DEVFS_DEVFS_H_
41
42#define DEVFS_MAGIC 0xdb0a087a
43
44/*

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

163 struct timespec de_atime;
164 struct timespec de_mtime;
165 struct timespec de_ctime;
166 struct vnode *de_vnode;
167 char * de_symlink;
168};
169
170struct devfs_mount {
171 struct vnode *dm_root; /* Root node */
171 struct mount *dm_mount;
172 struct devfs_dirent *dm_rootdir;
173 struct devfs_dirent *dm_basedir;
174 unsigned dm_generation;
175 struct devfs_dirent **dm_dirent;
176 struct devfs_dirent **dm_overflow;
177 int dm_inode;
178 struct lock dm_lock;
179 devfs_rsnum dm_ruleset;

--- 24 unchanged lines hidden ---
172 struct devfs_dirent *dm_rootdir;
173 struct devfs_dirent *dm_basedir;
174 unsigned dm_generation;
175 struct devfs_dirent **dm_dirent;
176 struct devfs_dirent **dm_overflow;
177 int dm_inode;
178 struct lock dm_lock;
179 devfs_rsnum dm_ruleset;

--- 24 unchanged lines hidden ---