1. 21 3月, 2012 3 次提交
  2. 11 1月, 2012 1 次提交
  3. 07 1月, 2012 1 次提交
  4. 04 1月, 2012 7 次提交
  5. 02 11月, 2011 2 次提交
  6. 16 9月, 2011 2 次提交
  7. 22 7月, 2011 2 次提交
  8. 21 7月, 2011 3 次提交
  9. 07 7月, 2011 2 次提交
  10. 30 6月, 2011 6 次提交
  11. 28 5月, 2011 1 次提交
  12. 26 5月, 2011 2 次提交
  13. 24 3月, 2011 1 次提交
  14. 10 3月, 2011 1 次提交
  15. 04 2月, 2011 4 次提交
  16. 13 1月, 2011 1 次提交
  17. 07 1月, 2011 1 次提交
    • N
      fs: dcache reduce branches in lookup path · fb045adb
      Nick Piggin 提交于
      Reduce some branches and memory accesses in dcache lookup by adding dentry
      flags to indicate common d_ops are set, rather than having to check them.
      This saves a pointer memory access (dentry->d_op) in common path lookup
      situations, and saves another pointer load and branch in cases where we
      have d_op but not the particular operation.
      
      Patched with:
      
      git grep -E '[.>]([[:space:]])*d_op([[:space:]])*=' | xargs sed -e 's/\([^\t ]*\)->d_op = \(.*\);/d_set_d_op(\1, \2);/' -e 's/\([^\t ]*\)\.d_op = \(.*\);/d_set_d_op(\&\1, \2);/' -i
      Signed-off-by: NNick Piggin <npiggin@kernel.dk>
      fb045adb