coccinelle: use macro DIV_ROUND_UP instead of (((n) + (d) - 1) /(d))
sample from http://coccinellery.org/ Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
e0ca2ed562
commit
db718b4b15
19
scripts/coccinelle/round.cocci
Normal file
19
scripts/coccinelle/round.cocci
Normal file
@ -0,0 +1,19 @@
|
||||
// Use macro DIV_ROUND_UP instead of (((n) + (d) - 1) /(d))
|
||||
@@
|
||||
expression e1;
|
||||
expression e2;
|
||||
@@
|
||||
(
|
||||
- ((e1) + e2 - 1) / (e2)
|
||||
+ DIV_ROUND_UP(e1,e2)
|
||||
|
|
||||
- ((e1) + (e2 - 1)) / (e2)
|
||||
+ DIV_ROUND_UP(e1,e2)
|
||||
)
|
||||
|
||||
@@
|
||||
expression e1;
|
||||
expression e2;
|
||||
@@
|
||||
-(DIV_ROUND_UP(e1,e2))
|
||||
+DIV_ROUND_UP(e1,e2)
|
Loading…
Reference in New Issue
Block a user