mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-04-24 15:32:22 +08:00
ITS#7196 use IOV_MAX if it's defined and small
This commit is contained in:
parent
b23bb7a0b1
commit
1b07b48c1a
@ -947,6 +947,10 @@ struct MDB_env {
|
||||
};
|
||||
/** max number of pages to commit in one writev() call */
|
||||
#define MDB_COMMIT_PAGES 64
|
||||
#if defined(IOV_MAX) && IOV_MAX < MDB_COMMIT_PAGES
|
||||
#undef MDB_COMMIT_PAGES
|
||||
#define MDB_COMMIT_PAGES IOV_MAX
|
||||
#endif
|
||||
|
||||
static MDB_page *mdb_page_alloc(MDB_cursor *mc, int num);
|
||||
static MDB_page *mdb_page_new(MDB_cursor *mc, uint32_t flags, int num);
|
||||
|
Loading…
x
Reference in New Issue
Block a user