1. 11 11月, 2013 1 次提交
    • K
      bcache: Break up struct search · 220bb38c
      Kent Overstreet 提交于
      With all the recent refactoring around struct btree op struct search has
      gotten rather large.
      
      But we can now easily break it up in a different way - we break out
      struct btree_insert_op which is for inserting data into the cache, and
      that's now what the copying gc code uses - struct search is now specific
      to request.c
      Signed-off-by: NKent Overstreet <kmo@daterainc.com>
      220bb38c
  2. 27 6月, 2013 2 次提交
    • K
      bcache: Rip out pkey()/pbtree() · 85b1492e
      Kent Overstreet 提交于
      Old gcc doesnt like the struct hack, and it is kind of ugly. So finish
      off the work to convert pr_debug() statements to tracepoints, and delete
      pkey()/pbtree().
      Signed-off-by: NKent Overstreet <koverstreet@google.com>
      85b1492e
    • K
      bcache: Fix/revamp tracepoints · c37511b8
      Kent Overstreet 提交于
      The tracepoints were reworked to be more sensible, and fixed a null
      pointer deref in one of the tracepoints.
      
      Converted some of the pr_debug()s to tracepoints - this is partly a
      performance optimization; it used to be that with DEBUG or
      CONFIG_DYNAMIC_DEBUG pr_debug() was an empty macro; but at some point it
      was changed to an empty inline function.
      
      Some of the pr_debug() statements had rather expensive function calls as
      part of the arguments, so this code was getting run unnecessarily even
      on non debug kernels - in some fast paths, too.
      Signed-off-by: NKent Overstreet <koverstreet@google.com>
      c37511b8
  3. 24 3月, 2013 1 次提交