Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-07-29 | Fix tdb_check() to work with read-only tdb databases. The function ↵ | Jeremy Allison | 1 | -3/+3 | |
tdb_lockall() uses F_WRLCK internally, which doesn't work on a fd opened with O_RDONLY. Use tdb_lockall_read() instead. Jeremy. | |||||
2010-02-10 | tdb: give a name to the invalid recovery area constant (0) | Rusty Russell | 1 | -1/+1 | |
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> | |||||
2009-11-08 | tdb: Fix a C++ warning | Volker Lendecke | 1 | -1/+2 | |
2009-10-23 | tdb: rename 'struct list_struct' into 'struct tdb_record' | Stefan Metzmacher | 1 | -4/+4 | |
metze | |||||
2009-10-22 | lib/tdb: add tdb_check() | Rusty Russell | 1 | -0/+422 | |
ctdb wants a quick way to detect corrupt tdbs; particularly, tdbs with loops in their hash chains. tdb_check() provides this. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> |