1. 01 Jan, 2011 2 commits
  2. 23 Dec, 2010 4 commits
  3. 16 Dec, 2010 1 commit
    • Rusty Russell's avatar
      typesafe_cb: Fix warnings with gcc-4.5: · 6535bdee
      Rusty Russell authored
      Test compiled with warnings:
      /home/rusty/devel/cvs/ccan/ccan/typesafe_cb/test/compile_ok-typesafe_cb-NULL.c:/home/rusty/devel/cvs/ccan/ccan/typesafe_cb/test/compile_ok-typesafe_cb-NULL.c: In function ‘main’:
      /home/rusty/devel/cvs/ccan/ccan/typesafe_cb/test/compile_ok-typesafe_cb-NULL.c:18:2: warning: taking address of expression of type ‘void’
      /home/rusty/devel/cvs/ccan/ccan/typesafe_cb/test/compile_ok-typesafe_cb-NULL.c:18:2: warning: taking address of expression of type ‘void’
      /home/rusty/devel/cvs/ccan/ccan/typesafe_cb/test/compile_ok-typesafe_cb-NULL.c:18:2: warning: taking address of expression of type ‘void’
      /home/rusty/devel/cvs/ccan/ccan/typesafe_cb/test/compile_ok-typesafe_cb-NULL.c:18:2: warning: taking address of expression of type ‘void’
      /home/rusty/devel/cvs/ccan/ccan/typesafe_cb/test/compile_ok-typesafe_cb-NULL.c:18:2: warning: taking address of expression of type ‘void’
      /home/rusty/devel/cvs/ccan/ccan/typesafe_cb/test/compile_ok-typesafe_cb-NULL.c:18:2: warning: taking address of expression of type ‘void’
      /home/rusty/devel/cvs/ccan/ccan/typesafe_cb/test/compile_ok-typesafe_cb-NULL.c:18:2: warning: taking address of expression of type ‘void’
      /home/rusty/devel/cvs/ccan/ccan/typesafe_cb/test/compile_ok-typesafe_cb-NULL.c:19:2: warning: taking address of expression of type ‘void’
      6535bdee
  4. 13 Dec, 2010 4 commits
  5. 08 Dec, 2010 4 commits
    • Rusty Russell's avatar
      rbtree: remove unused variable in tests. · 73cc6ce4
      Rusty Russell authored
      73cc6ce4
    • Ronnie Sahlberg's avatar
      rb_tree: fix trbt_delete · 90768177
      Ronnie Sahlberg authored
      trbt_delete32() was broken and caused SEGV as soon as you tried to
      delete an object from a tree.
      
      Rework trbt_delete32() to instead just call talloc_free() instread of trying
      to call delete_node() directly.
      This makes the "from_destructor" argument to delete_node() redundant
      so that parameter is removed too.
      Signed-off-by: default avatarRonnie Sahlberg <sahlberg@lenovo-laptop.(none)>
      90768177
    • Rusty Russell's avatar
      configurator: warnings count as failures too. · 2cae94de
      Rusty Russell authored
      Unfortunately, gcc only warns if it sees an unknown attribute (in this case, gcc 4.1 vs "cold").
      2cae94de
    • Rusty Russell's avatar
      ccanlint: fix compile on x86-64 · c102d5ec
      Rusty Russell authored
      cc -g -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -I. -MD -Werror   -c -o tools/ccanlint/tests/examples_run.o tools/ccanlint/tests/examples_run.c
      cc1: warnings being treated as errors
      tools/ccanlint/tests/examples_run.c: In function ‘scan_forv’:
      tools/ccanlint/tests/examples_run.c:37: warning: passing argument 2 of ‘__builtin_va_copy’ discards qualifiers from pointer target type
      tools/ccanlint/tests/examples_run.c:43: warning: passing argument 4 of ‘scan_forv’ from incompatible pointer type
      tools/ccanlint/tests/examples_run.c:52: warning: passing argument 4 of ‘scan_forv’ from incompatible pointer type
      tools/ccanlint/tests/examples_run.c:60: warning: passing argument 4 of ‘scan_forv’ from incompatible pointer type
      tools/ccanlint/tests/examples_run.c: In function ‘scan_for’:
      tools/ccanlint/tests/examples_run.c:78: warning: passing argument 4 of ‘scan_forv’ from incompatible pointer type
      make: *** [tools/ccanlint/tests/examples_run.o] Error 1
      
      It really doesn't like constifying a va_arg, so remove the const declaration.
      c102d5ec
  6. 07 Dec, 2010 1 commit
  7. 06 Dec, 2010 8 commits
  8. 03 Dec, 2010 1 commit
  9. 01 Dec, 2010 13 commits
    • Rusty Russell's avatar
      Merge branch 'tdb2' · 51a56b52
      Rusty Russell authored
      51a56b52
    • Rusty Russell's avatar
      tdb2: update documentation · a42bba8e
      Rusty Russell authored
      Specifically the linked free tables, and reflect on the status of each
      point of the design document.
      a42bba8e
    • Rusty Russell's avatar
      tdb2: use separate magic constants for chain, htable and ftable entries · 2491b65a
      Rusty Russell authored
      Rather than overloading TDB_USED_MAGIC and the hash value as we do now.
      We also rename "free list" to the more-accurate "free table" everywhere.
      2491b65a
    • Rusty Russell's avatar
      tdb2: direct access during transactions. · f5087965
      Rusty Russell authored
      Currently we fall back to copying data during a transaction, but we don't
      need to in many cases.  Grant direct access in those cases.
      
      Before:
      $ ./speed --transaction 1000000
      Adding 1000000 records:  2409 ns (59916680 bytes)
      Finding 1000000 records:  1156 ns (59916680 bytes)
      Missing 1000000 records:  604 ns (59916680 bytes)
      Missing 1000000 records:  604 ns (59916680 bytes)
      Traversing 1000000 records:  1226 ns (59916680 bytes)
      Deleting 1000000 records:  1556 ns (119361928 bytes)
      Re-adding 1000000 records:  2326 ns (119361928 bytes)
      Appending 1000000 records:  3269 ns (246656880 bytes)
      Churning 1000000 records:  5613 ns (338235248 bytes)
      
      After:
      $ ./speed --transaction 1000000
      Adding 1000000 records:  1902 ns (59916680 bytes)
      Finding 1000000 records:  1032 ns (59916680 bytes)
      Missing 1000000 records:  606 ns (59916680 bytes)
      Missing 1000000 records:  606 ns (59916680 bytes)
      Traversing 1000000 records:  741 ns (59916680 bytes)
      Deleting 1000000 records:  1347 ns (119361928 bytes)
      Re-adding 1000000 records:  1727 ns (119361928 bytes)
      Appending 1000000 records:  2561 ns (246656880 bytes)
      Churning 1000000 records:  4403 ns (338235248 bytes)
      f5087965
    • Rusty Russell's avatar
      tdb2: add write flag to tdb_direct · a56db4a5
      Rusty Russell authored
      This is a precursor to direct access during transactions: they care about
      whether we are going to read or write to the file.
      a56db4a5
    • Rusty Russell's avatar
      tdb2: hash chaining · 2523e67f
      Rusty Russell authored
      If we get enough hash collisions, we can run out of hash bits; this almost
      certainly is caused by a deliberate attempt to break the tdb (hash bombing).
      
      Implement chained records for this case; they're slow but will keep the
      rest of the database functioning.
      2523e67f
    • Rusty Russell's avatar
      tdb2: use magic freetable value rather than different magic for coalescing · 539f1af0
      Rusty Russell authored
      We have to unlock during coalescing, so we mark records specially to indicate
      to tdb_check that they're not on any list, and to prevent other coalescers
      from grabbing them.
      
      Use a special free list number, rather than a new magic.
      539f1af0
    • Rusty Russell's avatar
      tdb2: compare the extra 11 hash bits in the header. · 11564894
      Rusty Russell authored
      We already have 10 hash bits encoded in the offset itself; we only get
      here incorrectly about 1 time in 1000, so it's a pretty minor
      optimization at best.
      
      Nonetheless, we have the information, so let's check it before
      accessing the key.  This reduces the probability of a false keycmp by
      another factor of 2000.
      11564894
    • Rusty Russell's avatar
      tdb2: add comparison stats · f2c286c9
      Rusty Russell authored
      f2c286c9
    • Rusty Russell's avatar
      tdb2: clean up logging · 4e185ad8
      Rusty Russell authored
      Logged errors should always set tdb->ecode before they are called, and
      there's little reason to have a sprintf-style logging function since
      we can do the formatting internally.
      
      Change the tdb_log attribute to just take a "const char *", and create
      a new tdb_logerr() helper which sets ecode and calls it.  As a bonus,
      mark it COLD so the compiler can optimize appropriately knowing that
      it's unlikely to be invoked.
      4e185ad8
    • Rusty Russell's avatar
      tdb2: remove truncated bit. · 57680260
      Rusty Russell authored
      There was an idea that we would use a bit to indicate that we didn't have
      the full hash value; this would allow us to move records down when we
      expanded a hash without rehashing them.
      
      There's little evidence that rehashing in this case is particularly
      expensive, so remove the bit.  We use that bit simply to indicate that
      an offset refers to a subhash instead.
      57680260
    • Rusty Russell's avatar
      tdb2: use direct access for tdb_read_off/tdb_write_off · b44978e1
      Rusty Russell authored
      This is one case where getting rid of tdb_get() cost us.  Also, we
      add more read-only checks.
      
      Before we removed tdb_get:
      Adding 1000000 records:  6480 ns (59900296 bytes)
      Finding 1000000 records:  2839 ns (59900296 bytes)
      Missing 1000000 records:  2485 ns (59900296 bytes)
      Traversing 1000000 records:  2598 ns (59900296 bytes)
      Deleting 1000000 records:  5342 ns (59900296 bytes)
      Re-adding 1000000 records:  5613 ns (59900296 bytes)
      Appending 1000000 records:  12194 ns (93594224 bytes)
      Churning 1000000 records:  14549 ns (93594224 bytes)
      
      Now:
      Adding 1000000 records:  6307 ns (59900296 bytes)
      Finding 1000000 records:  2801 ns (59900296 bytes)
      Missing 1000000 records:  2515 ns (59900296 bytes)
      Traversing 1000000 records:  2579 ns (59900296 bytes)
      Deleting 1000000 records:  5225 ns (59900296 bytes)
      Re-adding 1000000 records:  5878 ns (59900296 bytes)
      Appending 1000000 records:  12665 ns (93594224 bytes)
      Churning 1000000 records:  16090 ns (93594224 bytes)
      b44978e1
    • Rusty Russell's avatar
      tdb2: remove tdb_get() · 96b169e9
      Rusty Russell authored
      We have four internal helpers for reading data from the database:
      1) tdb_read_convert() - read (and convert) into a buffer.
      2) tdb_read_off() - read (and convert) and offset.
      3) tdb_access_read() - malloc or direct access to the database.
      4) tdb_get() - copy into a buffer or direct access to the database.
      
      The last one doesn't really buy us anything, so remove it (except for
      tdb_read_off/tdb_write_off, see next patch).
      
      Before:
      Adding 1000000 records:  6480 ns (59900296 bytes)
      Finding 1000000 records:  2839 ns (59900296 bytes)
      Missing 1000000 records:  2485 ns (59900296 bytes)
      Traversing 1000000 records:  2598 ns (59900296 bytes)
      Deleting 1000000 records:  5342 ns (59900296 bytes)
      Re-adding 1000000 records:  5613 ns (59900296 bytes)
      Appending 1000000 records:  12194 ns (93594224 bytes)
      Churning 1000000 records:  14549 ns (93594224 bytes)
      
      After:
      Adding 1000000 records:  6497 ns (59900296 bytes)
      Finding 1000000 records:  2854 ns (59900296 bytes)
      Missing 1000000 records:  2563 ns (59900296 bytes)
      Traversing 1000000 records:  2735 ns (59900296 bytes)
      Deleting 1000000 records:  11357 ns (59900296 bytes)
      Re-adding 1000000 records:  8145 ns (59900296 bytes)
      Appending 1000000 records:  10939 ns (93594224 bytes)
      Churning 1000000 records:  18479 ns (93594224 bytes)
      96b169e9
  10. 23 Nov, 2010 2 commits