diff options
author | Julia Lawall <julia@diku.dk> | 2008-04-26 17:36:35 +0200 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-26 17:36:35 +0200 |
commit | 00fe8b7ac2ff6b8afba11642fb71cdb17aa34df9 (patch) | |
tree | 69ac4748267d573634ed70c724dc5482f112e8ee /include | |
parent | 5e71d9c5a50b92b33d35061d42ac39166db9578e (diff) | |
download | linux-stable-00fe8b7ac2ff6b8afba11642fb71cdb17aa34df9.tar.gz linux-stable-00fe8b7ac2ff6b8afba11642fb71cdb17aa34df9.tar.bz2 linux-stable-00fe8b7ac2ff6b8afba11642fb71cdb17aa34df9.zip |
ide: use DIV_ROUND_UP
The kernel.h macro DIV_ROUND_UP performs the computation (((n) + (d) - 1) /
(d)) but is perhaps more readable.
An extract of the semantic patch that makes this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)
// <smpl>
@haskernel@
@@
#include <linux/kernel.h>
@depends on haskernel@
expression n,d;
@@
(
- (n + d - 1) / d
+ DIV_ROUND_UP(n,d)
|
- (n + (d - 1)) / d
+ DIV_ROUND_UP(n,d)
)
@depends on haskernel@
expression n,d;
@@
- DIV_ROUND_UP((n),d)
+ DIV_ROUND_UP(n,d)
@depends on haskernel@
expression n,d;
@@
- DIV_ROUND_UP(n,(d))
+ DIV_ROUND_UP(n,d)
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include')
0 files changed, 0 insertions, 0 deletions