- Aug 08, 2013
-
-
Hallvard Furuseth authored
Ignore parent txn cursors since it is the current txn's dirty_list which will be flushed. But check the current txn also when clearing, since cursors can have pages which are dirty in a parent. Check !mc_xcursor instead of !MDB_DUPSORT. Equivalent for valid data, but a bit safer if the sub-DB flags are corrupt.
-
Hallvard Furuseth authored
Ensure me_pghead has room before removing from spill/dirty list. Don't return pages to me_pghead in nested txns, use mt_free_pgs.
-
Hallvard Furuseth authored
mdb_page_spill(): Don't binary-search the unsorted dirty_list. mdb_page_flush(): Don't overwrite unprocessed dirty_list items.
-
Hallvard Furuseth authored
-
Hallvard Furuseth authored
-
Hallvard Furuseth authored
Pid locking needs a different lockfile-version: MDB_env's with and without pid locking must not coexist, they can sabotage each other. Store MDB_LOCK_FORMAT = (version | "use locking" flag) instead.
-
Hallvard Furuseth authored
Treat unexpected errors as "don't know". Invert Pidcheck return value, so nonzero including error codes = "the process may exist". On Windows: Catch exited but still existing processes. Handle undefined PROCESS_QUERY_LIMITED_INFORMATION. On Unix: don't trust F_GETLK error to leave the input alone, the fcntl() doc seems unclear.
-
- Aug 07, 2013
-
-
Howard Chu authored
-
- Aug 05, 2013
-
-
Hallvard Furuseth authored
-
Hallvard Furuseth authored
-
Hallvard Furuseth authored
mdb_copy: Does not copy lockfile. Can trigger file growth. mdb_txn_begin(): Clarify usage restrictions. mdb_drop(): State what to do rather than what will be done, since closing the handle could otherwise be read as happening even at failure.
-
- Jul 31, 2013
-
-
Howard Chu authored
Make sure errors are propagated from init_meta
-
- Jul 30, 2013
-
-
Howard Chu authored
-
Howard Chu authored
Loop on copyfd meta write, since pipes may return after partial write.
-
Howard Chu authored
partial revert of d6d2638a and 26a25df5 The original code was already tested and working correctly.
-
- Jul 29, 2013
-
-
Howard Chu authored
Return the actual shared reader count when it exists, not just the current process env's reader count.
-
- Jul 26, 2013
-
-
Howard Chu authored
NetBSD can only handle up to 14 chars, we were using 21. Now we encode to 15, and for NetBSD truncate the last char.
-
- Jul 19, 2013
-
-
Howard Chu authored
Check again after acquiring rmutex. Avoids potential issue with a duplicate pid coming in between initial check and rmutex.
-
Howard Chu authored
Avoid holding rmutex for longer than necessary.
-
- Jul 18, 2013
-
-
Howard Chu authored
Use mti_numreaders for loop limit, not me_maxreaders.
-
Howard Chu authored
-
Howard Chu authored
-
Howard Chu authored
-
Howard Chu authored
Don't obtain reader txn before displaying reader table. Exit after reader table if no other DB query options were given.
-
Howard Chu authored
Dump the active slots in the reader table.
-
- Jul 15, 2013
-
-
Howard Chu authored
Retrieve the flags from a DB handle.
-
- Jul 14, 2013
-
-
Howard Chu authored
Don't count pages twice if they're already accounted in an ancestor txn.
-
Howard Chu authored
Same fix for cursor_first/last.
-
Howard Chu authored
Whenever we enter cursor_set() the sub-cursor's flag must be cleared. If the new cursor position has valid subdata it will be initialized again, if not then the sub-cursor has nothing to point to.
-
- Jul 12, 2013
-
-
Howard Chu authored
-
Howard Chu authored
-
Hallvard Furuseth authored
-
Howard Chu authored
-
Howard Chu authored
This avoids unnecessary rewrites of pages that do not change. (Restructuring for upcoming mdb_page_spill work.)
-
Hallvard Furuseth authored
TODO: Rename C_UNTRACK to C_TRACKED. Omitted now for readability. The current name is because it's lazy: not always set when tracked.
-
Hallvard Furuseth authored
(Restructuring for upcoming mdb_page_spill work.) mdb_freelist_save() can't just Get() the destination, since mdb_page_spill() may have put the destination in the read-only map. TODO: Can this new put() modify the freelist, which would break it? The final iteration's put() can shorten the node, the rest uses MDB_CURRENT. We could set P_KEEP on dirty freeDB leaves and ovpages, since they are all about to be modified. But the code in this commit must stay anyway, if mdb should support dropping a 256G DB. I.e. too big for dirty_list.
-
Howard Chu authored
-
Howard Chu authored
-
Howard Chu authored
Commit d6d2638a broke read on zero-length files.
-
- Jul 10, 2013
-
-
Hallvard Furuseth authored
Nor uninited cursors' subcursors' page pointers.
-