summaryrefslogtreecommitdiffstats
path: root/lib/tdb
Commit message (Collapse)AuthorAgeFilesLines
* tdb: Fix help string in configure flag to enable Python bindings.Jelmer Vernooij2009-06-171-1/+1
|
* fix release scripts to always git cleanSimo Sorce2009-06-171-0/+3
| | | | | This makes sure we do not include foreign object files or other build byproducts by mistake.
* Add exports file and abi checker for tdbSimo Sorce2009-06-157-3/+172
| | | | | | | | This is a first attempt at exporting symbols only for public functions We also provide a rudimentary ABI checker that tries to check that function signatures are not changed by mistake. Given our use of macros this is not an API checker. It's all based on tdb.h contents and the gcc -aux-info option
* Add option to --disable-python on buildSimo Sorce2009-06-151-0/+9
|
* lib/tdb/tools/tdbtorture.c: fixed memory leak.Slava Semushin2009-06-061-0/+2
| | | | | Found by cppcheck: [lib/tdb/tools/tdbtorture.c:326]: (error) Memory leak: pids
* overallocate all records by 25%Andrew Tridgell2009-06-011-0/+3
| | | | | | | | This greatly reduces the fragmentation of databases where records tend to grow slowly by a small amount each time. The case where this is most seen is the ldb index records. Adding this overallocation reduced the size of the resulting database by more than 20x when running a test that adds 10k users.
* auto-repack in transactions that expand the tdbAndrew Tridgell2009-06-011-0/+12
| | | | | | The idea behind this is to recover from badly fragmented free lists. Choosing the point where the file expands is fairly arbitrary, but seems to work well.
* fixed tdbbackup to give tdb error messagesAndrew Tridgell2009-05-281-7/+31
|
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaAndrew Tridgell2009-05-281-6/+6
|\
| * tdb: Fix some recently introduced warnings in tdbtoolTim Prouty2009-05-271-6/+6
| |
* | make TDB_NOSYNC affect all the fsync/msync calls in transactionsAndrew Tridgell2009-05-281-5/+7
|/ | | | | | During a transaction commit tdb normally uses fsync/msync calls to make it crash safe. This can be disabled using the TDB_NOSYNC flag, but it wasn't disabling all the code paths that caused a fsync/msync.
* added some more speed tests to tdbtoolAndrew Tridgell2009-05-261-6/+59
| | | | | | | This adds 3 simple speed tests to tdbtool, for transaction store, store and fetch. On my laptop this shows transactions costing about 10ms
* Detect tight loop in tdb_find()Jim McDonough2009-05-211-0/+5
|
* Update copies of config.guess and config.sub.Jelmer Vernooij2009-05-162-76/+282
|
* Update tdb and talloc web pagesSimo Sorce2009-05-051-4/+10
|
* Add release scripts for talloc and tdbSimo Sorce2009-05-051-0/+45
|
* tdb: Remove unused variableTim Prouty2009-03-311-1/+0
|
* up the version to 1.1.4 with the addition ofAndrew Tridgell2009-03-311-1/+1
| | | | tdb_transaction_prepare_commit()
* added basic testing of tdb_transaction_prepare_commit() in tdbtortureAndrew Tridgell2009-03-311-0/+6
|
* Add tdb_transaction_prepare_commit()Howard Chu2009-03-313-52/+133
| | | | | | | | Using tdb_transaction_prepare_commit() gives us 2-phase commits. This allows us to safely commit across multiple tdb databases at once, with reasonable transaction semantics Signed-off-by: tridge@samba.org
* lib/tdb: if we know pwrite and pread are thread/fork safe tdb_reopen_all() ↵Stefan Metzmacher2009-02-251-0/+5
| | | | | | | | | should be a noop The reason for tdb_reopen_all() is that the seek pointer on fds are shared between parent and child. metze
* lib/tdb: don't generate a static library for the samba4 buildStefan Metzmacher2009-02-031-1/+1
| | | | | | We also don't do this for talloc and ldb. metze
* lib/tdb: the python bindings don't use swig anymoreStefan Metzmacher2009-02-021-4/+2
| | | | metze
* s3 build: Remove unused fstat check to fix a bunch of HAVE_FSTAT warningsTim Prouty2009-01-301-4/+0
|
* lib/tdb: include replace.h and system/filesys.h in pytdb.cStefan Metzmacher2009-01-301-4/+3
| | | | | | This fixes the build on Tru64. metze
* Avoid using a utility header for Python replacements included in Samba,Jelmer Vernooij2009-01-081-1/+5
| | | | since this will not be shipped with talloc/tdb/tevent/etc.
* s3/s4 build: Fix Py_RETURN_NONE to work with python versions < 2.4Tim Prouty2009-01-071-1/+1
|
* py: Properly increase the reference counter of Py_None.Jelmer Vernooij2009-01-061-16/+16
|
* Fix all warnings in source3 with gcc4.3.Jeremy Allison2008-12-311-1/+3
| | | | Jeremy.
* standalone: Use more variables, preparing to include these files from mainJelmer Vernooij2008-12-231-5/+6
| | | | Samba 4 makefile.
* Fix standalone build of tdb python module, update ignores for standalone tdb.Jelmer Vernooij2008-12-221-4/+4
|
* Make sure to not close tdb database more than once.Jelmer Vernooij2008-12-181-2/+10
|
* Remove swig use from tdb standalone build.Jelmer Vernooij2008-12-183-14/+5
|
* Implement missing functions in pytdb.Jelmer Vernooij2008-12-182-34/+66
|
* Add simple manually written replacement for the tdb module.Jelmer Vernooij2008-12-186-4990/+453
|
* s3/s4: Fix "shadows a global declaration" warningTim Prouty2008-12-161-1/+1
|
* Added a simple tdb integrity check to tdbtool. The command "check" runs ↵Holger Hetterich2008-12-161-1/+28
| | | | traverse on the currently open tdb, and returns the number of entries if the integrity check is successful.
* imported the tdb_repack() code from CTDBAndrew Tridgell2008-12-162-1/+93
| | | | | | | | The tdb_repack() function repacks a TDB so that it has a single freelist entry. The file doesn't shrink, but it does remove all freelist fragmentation. This code originated in the CTDB vacuuming code, but will now be used in ldb to cope with fragmentation from re-indexing
* make tdbbackup use transactionsAndrew Tridgell2008-12-161-6/+19
| | | | | | tdbbackup was originally written before we had transactions, and it attempted to use its own fsync() calls to make it safe. Now that we have transactions we can do it in a much safer (and faster!) fashion
* lib/tdb: increase the version number after some critial changesStefan Metzmacher2008-09-291-1/+1
| | | | | | The tdb_transaction/traverse interaction fixes are critical. metze
* Add shared-build target to tdb.Simo Sorce2008-09-194-0/+30
| | | | | Useful to build multiple standalone libraries that depend on each other without having to install them to the final install dir during the build.
* Provide tdb.open and ldb.open python functions.Jelmer Vernooij2008-09-193-28/+41
|
* Move common libraries from root to lib/.Jelmer Vernooij2008-09-1738-0/+15529