mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
ITS#7455 simplify
Don't try to reclaim overflow pages while operating on the freelist (for now). The circular dependencies are much like the single-page case, but worse. Maybe look into this in the future, but it's not absolutely necessary now.
This commit is contained in:
parent
e26fc73417
commit
aff2693fc0
@ -1347,6 +1347,11 @@ none:
|
||||
|
||||
mdb_cursor_init(&m2, txn, FREE_DBI, NULL);
|
||||
do {
|
||||
/* bail out if we're operating on the freelist.
|
||||
* TODO: get all of this working. Many circular dependencies...
|
||||
*/
|
||||
if (mc->mc_dbi == FREE_DBI)
|
||||
break;
|
||||
if (readit) {
|
||||
MDB_val key, data;
|
||||
MDB_oldpages *mop2;
|
||||
|
Loading…
Reference in New Issue
Block a user