Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| SHA1 Hash: | dc4023a6696f80e9f396c18aad087a46ee488be1 |
|---|---|
| Date: | 2010-03-10 21:10:33 |
| User: | stephan |
| Comment: | lowered default block list allocation increment. Need to test it on 64-bit again (where a low value was giving me a problem). |
Tags And Properties
- branch=trunk inherited from [c3e484d316]
- sym-trunk inherited from [c3e484d316]
Changes
[hide diffs]Changes to pfs/block.c
@@ -79,11 +79,11 @@
(and i have no idea where it's coming from - everything else
seems to work). However, if i increase allocIncrement to 10, this
problem goes away. This needs more testing when i have access
to a 64-bit machine with a graphical debugger.
*/
- static whio_epfs_id_t allocIncrement = 10;
+ static whio_epfs_id_t allocIncrement = 6;
if( bli->alloced <= bli->count )
{
rc = whio_epfs_block_list_reserve( fs, bli, bli->count + allocIncrement );
if( whio_rc.OK != rc ) return rc;
}