summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-03-20 19:50:31 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-03-20 19:50:31 +0000
commitdb36b54a09a291b94d13dc551672cf99af1248a0 (patch)
treec3b3eb6c7f212601f3d01b438d63fc0449a24473 /sys/ufs/ffs
parent45a0276771ee7b66193becda5f8dae395cdfe953 (diff)
cleaning
Diffstat (limited to 'sys/ufs/ffs')
-rw-r--r--sys/ufs/ffs/ffs_inode.c33
1 files changed, 16 insertions, 17 deletions
diff --git a/sys/ufs/ffs/ffs_inode.c b/sys/ufs/ffs/ffs_inode.c
index 1eb8f2e81ca..26811ff1245 100644
--- a/sys/ufs/ffs/ffs_inode.c
+++ b/sys/ufs/ffs/ffs_inode.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ffs_inode.c,v 1.18 2001/02/23 14:42:39 csapuntz Exp $ */
+/* $OpenBSD: ffs_inode.c,v 1.19 2001/03/20 19:50:30 art Exp $ */
/* $NetBSD: ffs_inode.c,v 1.10 1996/05/11 18:27:19 mycroft Exp $ */
/*
@@ -66,12 +66,12 @@ static int ffs_indirtrunc __P((struct inode *, daddr_t, daddr_t, daddr_t, int,
/*
* Update the access, modified, and inode change times as specified by the
- * IACCESS, IUPDATE, and ICHANGE flags respectively. The IMODIFIED flag is
- * used to specify that the inode needs to be updated but that the times have
- * already been set. The access and modified times are taken from the second
- * and third parameters; the inode change time is always taken from the current
- * time. If waitfor is set, then wait for the disk write of the inode to
- * complete.
+ * IN_ACCESS, IN_UPDATE, and IN_CHANGE flags respectively. The IN_MODIFIED
+ * flag is used to specify that the inode needs to be updated but that the
+ * times have already been set. The access and modified times are taken from
+ * the second and third parameters; the inode change time is always taken
+ * from the current time. If waitfor is set, then wait for the disk write
+ * of the inode to complete.
*/
int
ffs_update(v)
@@ -124,9 +124,8 @@ ffs_update(v)
ip->i_din.ffs_din.di_ouid = ip->i_ffs_uid; /* XXX */
ip->i_din.ffs_din.di_ogid = ip->i_ffs_gid; /* XXX */
} /* XXX */
- error = bread(ip->i_devvp,
- fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
- (int)fs->fs_bsize, NOCRED, &bp);
+ error = bread(ip->i_devvp, fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
+ (int)fs->fs_bsize, NOCRED, &bp);
if (error) {
brelse(bp);
return (error);
@@ -249,7 +248,7 @@ ffs_truncate(v)
aflags = B_CLRBUF;
if (ap->a_flags & IO_SYNC)
aflags |= B_SYNC;
- error = VOP_BALLOC(ovp, length -1, 1,
+ error = VOP_BALLOC(ovp, length - 1, 1,
ap->a_cred, aflags, &bp);
if (error)
return (error);
@@ -278,7 +277,7 @@ ffs_truncate(v)
* Shorten the size of the file. If the file is not being
* truncated to a block boundary, the contents of the
* partial block following the end of the file must be
- * zero'ed in case it ever become accessible again because
+ * zero'ed in case it ever becomes accessible again because
* of subsequent file growth. Directories however are not
* zero'ed as they should grow back initialized to empty.
*/
@@ -407,7 +406,7 @@ ffs_truncate(v)
oip->i_ffs_size = length;
newspace = blksize(fs, oip, lastblock);
if (newspace == 0)
- panic("itrunc: newspace");
+ panic("ffs_truncate: newspace");
if (oldspace - newspace > 0) {
/*
* Block number of space to be free'd is
@@ -423,10 +422,10 @@ done:
#ifdef DIAGNOSTIC
for (level = SINGLE; level <= TRIPLE; level++)
if (newblks[NDADDR + level] != oip->i_ffs_ib[level])
- panic("itrunc1");
+ panic("ffs_truncate1");
for (i = 0; i < NDADDR; i++)
if (newblks[i] != oip->i_ffs_db[i])
- panic("itrunc2");
+ panic("ffs_truncate2");
#endif /* DIAGNOSTIC */
/*
* Put back the real size.
@@ -464,7 +463,7 @@ ffs_indirtrunc(ip, lbn, dbn, lastbn, level, countp)
register struct fs *fs = ip->i_fs;
register daddr_t *bap;
struct vnode *vp;
- daddr_t *copy, nb, nlbn, last;
+ daddr_t *copy = NULL, nb, nlbn, last;
long blkcount, factor;
int nblocks, blocksreleased = 0;
int error = 0, allerror = 0;
@@ -556,7 +555,7 @@ ffs_indirtrunc(ip, lbn, dbn, lastbn, level, countp)
blocksreleased += blkcount;
}
}
- if (lastbn != -1) {
+ if (copy != NULL) {
FREE(copy, M_TEMP);
} else {
bp->b_flags |= B_INVAL;