Explorar o código

Add Coccinelle patch for detecing places where CEIL_DIV should be used.

Alexander Færøy %!s(int64=7) %!d(string=hai) anos
pai
achega
25eaf77033
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  1. 6 0
      scripts/coccinelle/ceil_div.cocci

+ 6 - 0
scripts/coccinelle/ceil_div.cocci

@@ -0,0 +1,6 @@
+@@
+expression n, d;
+@@
+
+- (((n) + (d) - 1) / (d))
++ CEIL_DIV(n, d)