Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
(This used to be commit af9e0421529104d2583c58f7723abe8612e78f53)
|
|
(This used to be commit 6c9a8bf9f03cef0fc1c5f7ec3f8786eccf79c851)
|
|
(This used to be commit 7b93e43dad55454e9107a38e67764e08f51392d3)
|
|
(This used to be commit 94dfeb5e89a641e2af3d7426d9d25c87952198d2)
|
|
(This used to be commit 35c8ebdca2612b52cd3eb2aafd35041d17173722)
|
|
(This used to be commit b5d4ab2cf4a73883fff867f878788d94bd8e1649)
|
|
(This used to be commit 9f233c14540cd4b2d5f4c7fe01e2d89cb220abc8)
|
|
(This used to be commit 8d77ea379fef5ad4b2718bc8e0620304588c9239)
|
|
(This used to be commit 7008f90e03a12687f739e5492b3e0ab36587db6a)
|
|
are in place.
(This used to be commit 6f79763005721af1b3a1a6880b98c465723a373b)
|
|
(This used to be commit 24e2623a921c904615f9943bc8833a0a4ef3dc05)
|
|
(This used to be commit dfd5b456f932268e2b1a82e2775037d356b9483e)
|
|
(This used to be commit a2d426c89b485e687ef8fc0770bbf8aab8ce3cc5)
|
|
(This used to be commit 52106ad04edc3e80e3e3feb8d4b2d4e9e945cbbb)
|
|
bindings.
(This used to be commit d8d04300d2c2613268e8bf9e6981d172471514da)
|
|
metze
(This used to be commit 1f2ba20a11f5f34235d8067c72f8d79486db0f01)
|
|
metze
(This used to be commit 5aa20bb649136c21ae35f2578954f133bb7af233)
|
|
(This used to be commit 91133d27110ee6447dbc64f1c8d52cb90ca1a86c)
|
|
that.
(This used to be commit 228dd6830eb9c91287bb3e0233d8b3a404ff3676)
|
|
(This used to be commit c758db2709e6f3d8e6c3fb65f4efd3dec3518e51)
|
|
(This used to be commit 40a8cd0d2fd4d10110243ee75ff92bef73bb06b9)
|
|
(This used to be commit af99cd3e00d981e90df4bc61d498704249df1412)
|
|
(This used to be commit 03bc4896e6c83d4d01b366cd5ce9e49547ee206c)
|
|
(This used to be commit 8197cb975ec8ed92f10782cef20ff4373d6d6965)
|
|
support of system versions of tdb, talloc.
(This used to be commit 9b991ce9ca28b3d88c778305ec5f681506162637)
|
|
(This used to be commit e72cec408e832e0f6ce05c38febdd56de501dbf7)
|
|
(This used to be commit d0f8d46813ea0b633cb40c9a77b90f34307cb2ab)
|
|
separately specifying CPPFLAGS and LDFLAGS.
(This used to be commit 41c775efde85cb1115c40488dd3ab49cd77e356d)
|
|
(This used to be commit 5a8becb1be1b41b4fecf9f9f47a60eed5f77c264)
|
|
metze
(This used to be commit 477c83c9834fa4dde0b69f6413336144ea5d5bdb)
|
|
- don't try to install with make test
- add make distclean and realdistclean
metze
(This used to be commit 67cb692a48726075f70b55e18e71d8fae6303d34)
|
|
(This used to be commit a4d1f1d2229e1a0b1523bf14fab59278207abbc0)
|
|
isolation of our portability environment from the main code, and also
simplifies the includes system (no separate #ifdef _SAMBA_BUILD for
tdb. ldb etc now)
(This used to be commit 77d1a468e06290aba789e2f3affc769fc5159a21)
|
|
(This used to be commit 05521650c622c933a742b833dc38b7e9b32836be)
|
|
* libreplace can now build stand-alone
* add stub testsuite for libreplace
* make talloc/tdb/ldb use libreplace
(This used to be commit fe7ca4b1454e01a33ed0d53791ebffdd349298b4)
|
|
metze
(This used to be commit 18b4ae591a3a137dd25edd16a574e489cd5552bf)
|
|
(This used to be commit 01b76c7aa118f853593d006803796e50e8821533)
|
|
(This used to be commit 3a22b28f2b6d960e00acf1038d8cd3b820cf0be7)
|
|
directory to source
(This used to be commit a81a3874e1a40131cbba22d14d7b68fd0f5b54c5)
|
|
(This used to be commit 45997039148e5d689dacf4d47c09740b937ac379)
|
|
same directory
as the source
(This used to be commit 312491b2511039f3d6308e70c849810c35a3259c)
|
|
samba-technical posting for more details on the transactions design.
This also adds a number of command line arguments to tdbtorture,
making it more flexible, and fixes some lock deadlock conditions in
the tdbtorture code.
(This used to be commit 06bd8abba942ec9f1e23f5c5d546cbb71ca3a701)
|
|
just involves splitting up the core tdb.c code into separate files on
logical boundaries, but there are some minor functional changes as well:
- move the 'struct tdb_context' into tdb_private.h, hiding it from
users. This was done to allow the structure to change without
breaking code that uses tdb.
- added accessor functions tdb_fd(), tdb_name(), and tdb_log_fn() to
access the elements of struct tdb_context that were used by
external code but are no longer visible
- simplied tdb_append() to use tdb_fetch()/tdb_store(), which is just
as good due to the way tdb locks work
- changed some of the types (such as tdb_off to tdb_off_t) to make
syntax highlighting work better
- removed the old optional spinlock code. It was a bad idea.
- fixed a bug in tdb_reopen_all() that caused tdbtorture to sometimes
fail or report nasty looking errors. This is the only real bug
fixed in this commit. Jeremy/Jerry, you might like to pickup this
change for Samba3, as that could definately affect smbd in
Samba3.
The aim of all of these changes is to make the tdb
transactions/journaling code I am working on easier to write. I
started to write it on top of the existing tdb.c code and it got very
messy. Splitting up the code makes it much easier to follow.
There are more cleanups we could do in tdb, such as using uint32_t
instead of u32 (suggested by metze). I'll leave those for another day.
(This used to be commit 4673cdd0d261614e707b72a7a348bb0e7dbb2482)
|
|
- reduced the torture size so it doesn't kill the build farm hosts
(This used to be commit 7a88a9f06cbe5c125edad0da7908b94bcedfe4fc)
|
|
(This used to be commit 4a61a5c70efdf3842e19ae74a2b56c4b10e8e294)
|
|
don't have libgdbm, and the configure test for gdbm is broken
(This used to be commit 5c4c3e9a8d9d853028271f228ad36388f4cb2012)
|
|
Add autoconf to tdb
(This used to be commit 95fed657f458a856feec2fb256edd642e4179979)
|