Note: "permalinks" may not be as permanent as we would like,
direct links of old sources may well be a few messages off.
div_ceil and div_floor macros duplicates round_up and round_down from kernel.h Signed-off-by: Ivan Safonov <insafonov at gmail.com> --- drivers/block/drbd/drbd_int.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h index e66d453..08256ad 100644 --- a/drivers/block/drbd/drbd_int.h +++ b/drivers/block/drbd/drbd_int.h @@ -195,11 +195,6 @@ drbd_insert_fault(struct drbd_device *device, unsigned int type) { #endif } -/* integer division, round _UP_ to the next integer */ -#define div_ceil(A, B) ((A)/(B) + ((A)%(B) ? 1 : 0)) -/* usual integer division */ -#define div_floor(A, B) ((A)/(B)) - extern struct ratelimit_state drbd_ratelimit_state; extern struct idr drbd_devices; /* RCU, updates: genl_lock() */ extern struct list_head drbd_resources; /* RCU, updates: genl_lock() */ -- 2.4.10