Leave a hole for AFS

This commit is contained in:
brezak 1993-06-10 16:25:01 +00:00
parent 399d30c4ba
commit 224ca11730
2 changed files with 5 additions and 3 deletions

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* from: @(#)vfs_conf.c 7.3 (Berkeley) 6/28/90 * from: @(#)vfs_conf.c 7.3 (Berkeley) 6/28/90
* $Id: vfs_conf.c,v 1.7 1993/06/10 01:03:24 cgd Exp $ * $Id: vfs_conf.c,v 1.8 1993/06/10 16:25:04 brezak Exp $
*/ */
#include "param.h" #include "param.h"
@ -122,4 +122,5 @@ struct vfsops *vfssw[] = {
#else #else
(struct vfsops *)0, (struct vfsops *)0,
#endif #endif
(struct vfsops *)0, /* 9 = MOUNT_AFS */
}; };

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* from: @(#)mount.h 7.22 (Berkeley) 6/3/91 * from: @(#)mount.h 7.22 (Berkeley) 6/3/91
* $Id: mount.h,v 1.9 1993/06/10 01:20:30 cgd Exp $ * $Id: mount.h,v 1.10 1993/06/10 16:25:01 brezak Exp $
*/ */
#ifndef _SYS_MOUNT_H_ #ifndef _SYS_MOUNT_H_
@ -85,7 +85,8 @@ struct statfs {
#define MOUNT_FDESC 6 /* /dev/fd filesystem */ #define MOUNT_FDESC 6 /* /dev/fd filesystem */
#define MOUNT_KERNFS 7 /* kernel variable filesystem */ #define MOUNT_KERNFS 7 /* kernel variable filesystem */
#define MOUNT_DEVFS 8 /* device node filesystem */ #define MOUNT_DEVFS 8 /* device node filesystem */
#define MOUNT_MAXTYPE MOUNT_DEVFS #define MOUNT_AFS 9 /* AFS 3.x */
#define MOUNT_MAXTYPE MOUNT_AFS
/* /*
* Structure per mounted file system. * Structure per mounted file system.