diff options
author | julian <julian@FreeBSD.org> | 1995-04-20 03:16:31 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1995-04-20 03:16:31 +0000 |
commit | 59f6d93fbd478a4e96d6b280a877eeb9d4e2b2a9 (patch) | |
tree | 4794f1a9f1451f487075b9314703b41402dd060f /sys | |
parent | 0fe46c6b99556a1dddbf49c5e06a0982a3f7df6c (diff) | |
download | FreeBSD-src-59f6d93fbd478a4e96d6b280a877eeb9d4e2b2a9.zip FreeBSD-src-59f6d93fbd478a4e96d6b280a877eeb9d4e2b2a9.tar.gz |
Reviewed by: no-one yet, but non-intrusive
Submitted by: julian@tfs.com
Obtained from: written from scratch
slight changes to make space for devfs..
(also conditional test code in i386/isa/fd.c)
why casn't cvs picked up these changes and shown them here?
is this going to be a NULL commit?
who knows? (it scanned all the dirs)
===================================================================
RCS file: /home/ncvs/src/sys/sys/malloc.h,v
retrieving revision 1.7
diff -r1.7 malloc.h
113a114,117
> #define M_DEVFSMNT 62 /* DEVFS mount structure */
> #define M_DEVFSBACK 63 /* DEVFS Back node */
> #define M_DEVFSFRONT 64 /* DEVFS Front node */
> #define M_DEVFSNODE 65 /* DEVFS node */
184c188,192
< NULL, NULL, NULL, NULL, NULL, \
---
> "DEVFS mount", /* 62 M_DEVFSMNT */ \
> "DEVFS back", /* 63 M_DEVFSBACK */ \
> "DEVFS front", /* 64 M_DEVFSFRONT */ \
> "DEVFS node", /* 65 M_DEVFSNODE */ \
> NULL, \
Index: sys/mount.h
===================================================================
RCS file: /home/ncvs/src/sys/sys/mount.h,v
retrieving revision 1.16
diff -r1.16 mount.h
100c100,101
< #define MOUNT_MAXTYPE 15
---
> #define MOUNT_DEVFS 16 /* existing device Filesystem */
> #define MOUNT_MAXTYPE 16
118a120
> "devfs", /* 15 MOUNT_DEVFS */ \
Index: sys/vnode.h
===================================================================
RCS file: /home/ncvs/src/sys/sys/vnode.h,v
retrieving revision 1.19
diff -r1.19 vnode.h
61c61
< VT_UNION, VT_MSDOSFS
---
> VT_UNION, VT_MSDOSFS, VT_DEVFS
Diffstat (limited to 'sys')
-rw-r--r-- | sys/conf/files | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/conf/files b/sys/conf/files index b78925b..5de033a 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -136,6 +136,10 @@ miscfs/umapfs/umap_vnops.c optional umapfs miscfs/union/union_subr.c optional union miscfs/union/union_vfsops.c optional union miscfs/union/union_vnops.c optional union +miscfs/devfs/devfs_vnops.c optional devfs +miscfs/devfs/devfs_vfsops.c optional devfs +miscfs/devfs/devfs_back.c optional devfs +miscfs/devfs/devfs_front.c optional devfs msdosfs/msdosfs_conv.c optional msdosfs msdosfs/msdosfs_denode.c optional msdosfs msdosfs/msdosfs_fat.c optional msdosfs |