svn commit: r297695 - head/sys/fs/ext2fs
Kevin Lo
kevlo at FreeBSD.org
Fri Apr 8 04:29:07 UTC 2016
Author: kevlo
Date: Fri Apr 8 04:29:05 2016
New Revision: 297695
URL: https://svnweb.freebsd.org/changeset/base/297695
Log:
Fix comment.
Modified:
head/sys/fs/ext2fs/ext2_vfsops.c
Modified: head/sys/fs/ext2fs/ext2_vfsops.c
==============================================================================
--- head/sys/fs/ext2fs/ext2_vfsops.c Fri Apr 8 03:26:21 2016 (r297694)
+++ head/sys/fs/ext2fs/ext2_vfsops.c Fri Apr 8 04:29:05 2016 (r297695)
@@ -308,8 +308,8 @@ ext2_check_sb_compat(struct ext2fs *es,
}
/*
- * This computes the fields of the ext2_sb_info structure from the
- * data in the ext2_super_block structure read in.
+ * This computes the fields of the m_ext2fs structure from the
+ * data in the ext2fs structure read in.
*/
static int
compute_sb_data(struct vnode *devvp, struct ext2fs *es,
@@ -600,7 +600,7 @@ ext2_mountfs(struct vnode *devvp, struct
/*
* I don't know whether this is the right strategy. Note that
- * we dynamically allocate both an ext2_sb_info and an ext2_super_block
+ * we dynamically allocate both an m_ext2fs and an ext2fs
* while Linux keeps the super block in a locked buffer.
*/
ump->um_e2fs = malloc(sizeof(struct m_ext2fs),
More information about the svn-src-all
mailing list