*: style fixes. no code changes (verified with objdump)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@ -898,8 +898,12 @@ static void check_zones(unsigned i)
|
||||
if (inode_count[i] > 1) /* have we counted this file already? */
|
||||
return;
|
||||
inode = Inode1 + i;
|
||||
if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
|
||||
!S_ISLNK(inode->i_mode)) return;
|
||||
if (!S_ISDIR(inode->i_mode)
|
||||
&& !S_ISREG(inode->i_mode)
|
||||
&& !S_ISLNK(inode->i_mode)
|
||||
) {
|
||||
return;
|
||||
}
|
||||
for (i = 0; i < 7; i++)
|
||||
add_zone(i + inode->i_zone, &changed);
|
||||
add_zone_ind(7 + inode->i_zone, &changed);
|
||||
|
Reference in New Issue
Block a user