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