diff options
author | pfg <pfg@FreeBSD.org> | 2011-12-16 15:47:43 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2011-12-16 15:47:43 +0000 |
commit | 3ac7a716c7ee8afd4772d07cf3cb19cb7768e248 (patch) | |
tree | 29f8abe9508495bd9e6dd9171b0eb65400ed1dd9 /sys/fs/ext2fs/ext2_alloc.c | |
parent | 59dc1f5c983749567b18ae114722b4a41c9f04a2 (diff) | |
download | FreeBSD-src-3ac7a716c7ee8afd4772d07cf3cb19cb7768e248.zip FreeBSD-src-3ac7a716c7ee8afd4772d07cf3cb19cb7768e248.tar.gz |
Style cleanups by jh@.
Fix a comment from the previous commit.
Use M_ZERO instead of bzero() in ext2_vfsops.c
Add include guards from PR.
PR: 162564
Approved by: jhb (mentor)
MFC after: 2 weeks
Diffstat (limited to 'sys/fs/ext2fs/ext2_alloc.c')
-rw-r--r-- | sys/fs/ext2fs/ext2_alloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/fs/ext2fs/ext2_alloc.c b/sys/fs/ext2fs/ext2_alloc.c index 3d07af5..5720c72 100644 --- a/sys/fs/ext2fs/ext2_alloc.c +++ b/sys/fs/ext2fs/ext2_alloc.c @@ -364,7 +364,7 @@ ext2_valloc(pvp, mode, cred, vpp) * ext2_dirpref else obtain it using ino_to_cg. The preferred inode is * always the next inode. */ - if((mode & IFMT) == IFDIR) { + if ((mode & IFMT) == IFDIR) { cg = ext2_dirpref(pip); if (fs->e2fs_contigdirs[cg] < 255) fs->e2fs_contigdirs[cg]++; @@ -557,13 +557,13 @@ ext2_blkpref(ip, lbn, indx, bap, blocknr) /* if the next block is actually what we thought it is, then set the goal to what we thought it should be */ - if(ip->i_next_alloc_block == lbn && ip->i_next_alloc_goal != 0) + if (ip->i_next_alloc_block == lbn && ip->i_next_alloc_goal != 0) return ip->i_next_alloc_goal; /* now check whether we were provided with an array that basically tells us previous blocks to which we want to stay closeby */ - if(bap) + if (bap) for (tmp = indx - 1; tmp >= 0; tmp--) if (bap[tmp]) return bap[tmp]; |