summaryrefslogtreecommitdiff
path: root/sys/gnu/ext2fs
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1995-05-30 08:16:23 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1995-05-30 08:16:23 +0000
commit9b2e535452929d6f2f798a2c01b23b1f547a0b0f (patch)
tree176f04f674860c7cfae9ac5d2ff4d4e1d73cb2b7 /sys/gnu/ext2fs
parent44204187ec133a0ab7bd77c8d974ad5afd4d88b4 (diff)
Notes
Diffstat (limited to 'sys/gnu/ext2fs')
-rw-r--r--sys/gnu/ext2fs/ext2_bmap.c8
-rw-r--r--sys/gnu/ext2fs/inode.h4
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/gnu/ext2fs/ext2_bmap.c b/sys/gnu/ext2fs/ext2_bmap.c
index 1bc8455f62e5..900d2c24a709 100644
--- a/sys/gnu/ext2fs/ext2_bmap.c
+++ b/sys/gnu/ext2fs/ext2_bmap.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)ufs_bmap.c 8.6 (Berkeley) 1/21/94
- * $Id: ufs_bmap.c,v 1.6 1995/03/04 03:24:45 davidg Exp $
+ * $Id: ufs_bmap.c,v 1.7 1995/03/28 07:58:16 bde Exp $
*/
#include <sys/param.h>
@@ -159,7 +159,7 @@ ufs_bmaparray(vp, bn, bnp, ap, nump, runp)
devvp = VFSTOUFS(vp->v_mount)->um_devvp;
for (bp = NULL, ++xap; --num; ++xap) {
- /*
+ /*
* Exit the loop if there is no disk address assigned yet and
* the indirect block isn't in the cache, or if we were
* looking for an indirect block and we've found it.
@@ -242,7 +242,7 @@ ufs_getlbns(vp, bn, ap, nump)
if (bn < NDADDR)
return (0);
- /*
+ /*
* Determine the number of levels of indirection. After this loop
* is done, blockcnt indicates the number of data blocks possible
* at the given level of indirection, and NIADDR - i is the number
@@ -262,7 +262,7 @@ ufs_getlbns(vp, bn, ap, nump)
else
metalbn = -(-realbn - bn + NIADDR - i);
- /*
+ /*
* At each iteration, off is the offset into the bap array which is
* an array of disk addresses at the current level of indirection.
* The logical block number and the offset in that block are stored
diff --git a/sys/gnu/ext2fs/inode.h b/sys/gnu/ext2fs/inode.h
index f0c729769c8b..00105ea3635d 100644
--- a/sys/gnu/ext2fs/inode.h
+++ b/sys/gnu/ext2fs/inode.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)inode.h 8.4 (Berkeley) 1/21/94
- * $Id: inode.h,v 1.4 1994/12/27 13:59:14 bde Exp $
+ * $Id: inode.h,v 1.5 1995/04/24 05:13:11 dyson Exp $
*/
#ifndef _UFS_UFS_INODE_H_
@@ -57,7 +57,7 @@
* file in the UFS filesystem. It is composed of two types of
* information. The first part is the information that is needed
* only while the file is active (such as the identity of the file
- * and linkage to speed its lookup). The second part is the
+ * and linkage to speed its lookup). The second part is the
* permannent meta-data associated with the file which is read
* in from the permanent dinode from long term storage when the
* file becomes active, and is put back when the file is no longer