On 2013-Apr-5 21:50 , Artyom Tarasenko wrote:
You might change that patch rather than rounding up to the next 2^n, don't bother aligning to anything more than 0x2000.
You mean
} else if ( align > 0x2000) { align = 0x2000; } else {
Yeah, that's what I meant. Evidently the extra storage you were consuming by rounding everything up to 2^n wasn't the problem.