Use consistent description strings for M_EXT2NODE. This also fixes a

spelling error in the unused string.
This commit is contained in:
Bruce Evans 1997-11-20 16:56:25 +00:00
parent 41630a0133
commit ff0618391a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31315
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ static int ext2_unmount __P((struct mount *, int, struct proc *));
static int ext2_vget __P((struct mount *, ino_t, struct vnode **));
static int ext2_vptofh __P((struct vnode *, struct fid *));
static MALLOC_DEFINE(M_EXT2NODE, "EXT2 nodes", "EXT2 Filsystem inodes");
static MALLOC_DEFINE(M_EXT2NODE, "EXT2 node", "EXT2 vnode private part");
static struct vfsops ext2fs_vfsops = {
ext2_mount,

View File

@ -86,7 +86,7 @@ static int ext2_unmount __P((struct mount *, int, struct proc *));
static int ext2_vget __P((struct mount *, ino_t, struct vnode **));
static int ext2_vptofh __P((struct vnode *, struct fid *));
static MALLOC_DEFINE(M_EXT2NODE, "EXT2 nodes", "EXT2 Filsystem inodes");
static MALLOC_DEFINE(M_EXT2NODE, "EXT2 node", "EXT2 vnode private part");
static struct vfsops ext2fs_vfsops = {
ext2_mount,