diff options
author | luoqi <luoqi@FreeBSD.org> | 1999-05-14 20:40:23 +0000 |
---|---|---|
committer | luoqi <luoqi@FreeBSD.org> | 1999-05-14 20:40:23 +0000 |
commit | 6f6fbfa99e3c73fa5933c9c958046b4c87f59fd9 (patch) | |
tree | 312edd07466cd7807fc5370fe57cd22f0ffc8f33 /sys/ufs/mfs/mfs_vfsops.c | |
parent | a2b3ce9271c9b4e1de9711aebf24a7e990bab5c0 (diff) | |
download | FreeBSD-src-6f6fbfa99e3c73fa5933c9c958046b4c87f59fd9.zip FreeBSD-src-6f6fbfa99e3c73fa5933c9c958046b4c87f59fd9.tar.gz |
Legally acquire a major number for mfs.
Diffstat (limited to 'sys/ufs/mfs/mfs_vfsops.c')
-rw-r--r-- | sys/ufs/mfs/mfs_vfsops.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c index 9ac454e..e3eb25b 100644 --- a/sys/ufs/mfs/mfs_vfsops.c +++ b/sys/ufs/mfs/mfs_vfsops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mfs_vfsops.c 8.11 (Berkeley) 6/19/95 - * $Id: mfs_vfsops.c,v 1.61 1999/05/10 17:12:45 peter Exp $ + * $Id: mfs_vfsops.c,v 1.62 1999/05/11 19:55:03 phk Exp $ */ @@ -67,7 +67,7 @@ static caddr_t mfs_rootbase; /* address of mini-root in kernel virtual memory */ static u_long mfs_rootsize; /* size of mini-root in bytes */ #endif -static int mfs_minor; /* used for building internal dev_t */ +static int mfs_minor; /* used for building internal dev_t */ extern vop_t **mfs_vnodeop_p; @@ -453,6 +453,8 @@ mfs_statfs(mp, sbp, p) return (error); } +static struct cdevsw mfs_cdevsw = {}; + /* * Memory based filesystem initialization. */ @@ -460,5 +462,8 @@ static int mfs_init(vfsp) struct vfsconf *vfsp; { + dev_t dev = NODEV; + cdevsw_add(&dev, &mfs_cdevsw, NULL); + cdevsw_add_generic(255, major(dev), &mfs_cdevsw); return (0); } |