1. 20 9月, 2019 1 次提交
  2. 13 9月, 2019 6 次提交
  3. 05 9月, 2019 6 次提交
  4. 30 8月, 2019 3 次提交
  5. 09 8月, 2019 1 次提交
  6. 26 7月, 2019 4 次提交
  7. 06 6月, 2019 4 次提交
  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. 20 7月, 2018 1 次提交
  10. 09 7月, 2018 13 次提交