lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 05 Oct 2007 15:26:28 +0200
From:	Valerie Clement <valerie.clement@...l.net>
To:	"Aneesh Kumar K.V" <aneesh.kumar@...ux.vnet.ibm.com>
Cc:	linux-ext4 <linux-ext4@...r.kernel.org>
Subject: Re: update uninitialized-block-groups.patch and mballoc-core.patch

Aneesh Kumar K.V wrote:
> +    if (block_group == sbi->s_gdb_count - 1) {
> +        /*
> +         * Even though mke2fs always initialize first and last group
> +         * if some other tool enabled the EXT4_BG_BLOCK_UNINIT we need
> +         * to make sure we calculate the right free blocks
> +         */
> +        free_blocks = ext4_blocks_count(sbi->s_es) -
> +                le32_to_cpu(sbi->s_es->s_first_data_block) -
> +                (EXT4_BLOCKS_PER_GROUP(sb) * sbi->s_groups_count) -
> +                bit_max;
> +    } else {
> +        free_blocks = EXT4_BLOCKS_PER_GROUP(sb) - bit_max;
> +    }

Hi Aneesh,

I found a bug in the latest uninitialized-block-groups patch.
(block_group == sbi->s_gdb_count - 1)  must be replaced by
(block_group == sbi->s_groups_count - 1) in the ext4_init_block_bitmap() 
function.

(Seen while testing the mballoc feature with uninit_groups option 
enabled. fsck reported an error on this group.)

   Valérie
-
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ