mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 13:09:42 -05:00
Tweak comment about overflow allocations
This commit is contained in:
parent
bc0ca49d16
commit
86e78566e3
1 changed files with 4 additions and 1 deletions
|
|
@ -389,7 +389,10 @@ mdb_newpage(MDB_txn *txn, MDB_page *parent, unsigned int parent_idx, int num)
|
|||
MDB_oldpages *mop = txn->mt_env->me_pghead;
|
||||
txn->mt_oldest = oldest;
|
||||
if (num > 1) {
|
||||
/* FIXME */
|
||||
/* FIXME: For now, always use fresh pages. We
|
||||
* really ought to search the free list for a
|
||||
* contiguous range.
|
||||
*/
|
||||
;
|
||||
} else {
|
||||
/* peel pages off tail, so we only have to truncate the list */
|
||||
|
|
|
|||
Loading…
Reference in a new issue