1. 10 11月, 2018 14 次提交
  2. 09 11月, 2018 1 次提交
  3. 31 10月, 2018 1 次提交
  4. 15 10月, 2018 2 次提交
  5. 13 10月, 2018 2 次提交
  6. 12 10月, 2018 1 次提交
  7. 10 10月, 2018 1 次提交
  8. 06 10月, 2018 1 次提交
    • K
      treewide: Replace more open-coded allocation size multiplications · 329e0989
      Kees Cook 提交于
      As done treewide earlier, this catches several more open-coded
      allocation size calculations that were added to the kernel during the
      merge window. This performs the following mechanical transformations
      using Coccinelle:
      
      	kvmalloc(a * b, ...) -> kvmalloc_array(a, b, ...)
      	kvzalloc(a * b, ...) -> kvcalloc(a, b, ...)
      	devm_kzalloc(..., a * b, ...) -> devm_kcalloc(..., a, b, ...)
      Signed-off-by: NKees Cook <keescook@chromium.org>
      329e0989
  9. 05 10月, 2018 2 次提交
  10. 03 10月, 2018 10 次提交
  11. 20 9月, 2018 4 次提交
  12. 18 9月, 2018 1 次提交