mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 05:30:07 -05:00
Refactor mdb_page_get()
This commit is contained in:
parent
a43fcad8c6
commit
65d9791ada
1 changed files with 16 additions and 23 deletions
|
|
@ -5957,9 +5957,6 @@ static int
|
|||
mdb_page_get(MDB_cursor *mc, pgno_t pgno, MDB_page **ret, int *lvl)
|
||||
{
|
||||
MDB_txn *txn = mc->mc_txn;
|
||||
#ifndef MDB_VL32
|
||||
MDB_env *env = txn->mt_env;
|
||||
#endif
|
||||
MDB_page *p = NULL;
|
||||
int level;
|
||||
|
||||
|
|
@ -5978,14 +5975,7 @@ mdb_page_get(MDB_cursor *mc, pgno_t pgno, MDB_page **ret, int *lvl)
|
|||
MDB_ID pn = pgno << 1;
|
||||
x = mdb_midl_search(tx2->mt_spill_pgs, pn);
|
||||
if (x <= tx2->mt_spill_pgs[0] && tx2->mt_spill_pgs[x] == pn) {
|
||||
#ifdef MDB_VL32
|
||||
int rc = mdb_rpage_get(txn, pgno, &p);
|
||||
if (rc)
|
||||
return rc;
|
||||
#else
|
||||
p = (MDB_page *)(env->me_map + env->me_psize * pgno);
|
||||
#endif
|
||||
goto done;
|
||||
goto mapped;
|
||||
}
|
||||
}
|
||||
if (dl[0].mid) {
|
||||
|
|
@ -5999,23 +5989,26 @@ mdb_page_get(MDB_cursor *mc, pgno_t pgno, MDB_page **ret, int *lvl)
|
|||
} while ((tx2 = tx2->mt_parent) != NULL);
|
||||
}
|
||||
|
||||
if (pgno < txn->mt_next_pgno) {
|
||||
level = 0;
|
||||
#ifdef MDB_VL32
|
||||
{
|
||||
int rc = mdb_rpage_get(txn, pgno, &p);
|
||||
if (rc)
|
||||
return rc;
|
||||
}
|
||||
#else
|
||||
p = (MDB_page *)(env->me_map + env->me_psize * pgno);
|
||||
#endif
|
||||
} else {
|
||||
if (pgno >= txn->mt_next_pgno) {
|
||||
DPRINTF(("page %"Y"u not found", pgno));
|
||||
txn->mt_flags |= MDB_TXN_ERROR;
|
||||
return MDB_PAGE_NOTFOUND;
|
||||
}
|
||||
|
||||
level = 0;
|
||||
|
||||
mapped:
|
||||
{
|
||||
#ifdef MDB_VL32
|
||||
int rc = mdb_rpage_get(txn, pgno, &p);
|
||||
if (rc)
|
||||
return rc;
|
||||
#else
|
||||
MDB_env *env = txn->mt_env;
|
||||
p = (MDB_page *)(env->me_map + env->me_psize * pgno);
|
||||
#endif
|
||||
}
|
||||
|
||||
done:
|
||||
*ret = p;
|
||||
if (lvl)
|
||||
|
|
|
|||
Loading…
Reference in a new issue