Lower id2entry cache priority in tool mode

This commit is contained in:
Howard Chu 2005-10-25 10:54:04 +00:00
parent 8a69f642b8
commit 2f9965c32b

View File

@ -426,6 +426,10 @@ bdb_db_open( BackendDB *be )
}
if( i == BDB_ID2ENTRY ) {
if ( slapMode & SLAP_TOOL_MODE )
db->bdi_db->mpf->set_priority( db->bdi_db->mpf,
DB_PRIORITY_VERY_LOW );
rc = db->bdi_db->set_pagesize( db->bdi_db,
BDB_ID2ENTRY_PAGESIZE );
if ( slapMode & SLAP_TOOL_READMAIN ) {
@ -482,13 +486,6 @@ bdb_db_open( BackendDB *be )
return rc;
}
#if 0
if( i == BDB_ID2ENTRY && ( slapMode & SLAP_TOOL_MODE )) {
db->bdi_db->mpf->set_priority( db->bdi_db->mpf,
DB_PRIORITY_VERY_LOW );
}
#endif
flags &= ~(DB_CREATE | DB_RDONLY);
db->bdi_name = bdbi_databases[i].name;
bdb->bi_databases[i] = db;