Re: [PATCH] ext4: ext4_find_next_zero_bit needs an aligned address on some arch

2008-02-20 Thread Mingming Cao
On Wed, 2008-02-20 at 08:49 -0600, Eric Sandeen wrote: > Aneesh Kumar K.V wrote: > > ext4_find_next_zero_bit and ext4_find_next_bit needs a long aligned > > address on x8_64. Add mb_find_next_zero_bit and mb_find_next_bit > > and use them in the mballoc. > > > > Fix: https://bugzilla.redhat.com/sh

Re: [PATCH] ext4: ext4_find_next_zero_bit needs an aligned address on some arch

2008-02-20 Thread Eric Sandeen
Aneesh Kumar K.V wrote: > ext4_find_next_zero_bit and ext4_find_next_bit needs a long aligned > address on x8_64. Add mb_find_next_zero_bit and mb_find_next_bit > and use them in the mballoc. > > Fix: https://bugzilla.redhat.com/show_bug.cgi?id=433286 > > Eric Sandeen debugged the problem and sug

Re: [PATCH] ext4: ext4_find_next_zero_bit needs an aligned address on some arch

2008-02-20 Thread Eric Sandeen
Aneesh Kumar K.V wrote: > ext4_find_next_zero_bit and ext4_find_next_bit needs a long aligned > address on x8_64. Add mb_find_next_zero_bit and mb_find_next_bit > and use them in the mballoc. > > Fix: https://bugzilla.redhat.com/show_bug.cgi?id=433286 > > Eric Sandeen debugged the problem and sug

[PATCH] ext4: ext4_find_next_zero_bit needs an aligned address on some arch

2008-02-20 Thread Aneesh Kumar K.V
ext4_find_next_zero_bit and ext4_find_next_bit needs a long aligned address on x8_64. Add mb_find_next_zero_bit and mb_find_next_bit and use them in the mballoc. Fix: https://bugzilla.redhat.com/show_bug.cgi?id=433286 Eric Sandeen debugged the problem and suggested the fix. Signed-off-by: Aneesh