diff options
author | Andreas Gruenbacher <agruen@linbit.com> | 2011-05-11 14:29:52 +0200 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2012-11-08 16:55:50 +0100 |
commit | 6394b9358e6187414b7a6de7ba2c681ee4a790ac (patch) | |
tree | 0750ef2de127925d86f726287b726792f8b43cb8 /include/linux/drbd_limits.h | |
parent | 7dc1d67f7c324e5bf23883b94508112ca7a70f62 (diff) | |
download | op-kernel-dev-6394b9358e6187414b7a6de7ba2c681ee4a790ac.zip op-kernel-dev-6394b9358e6187414b7a6de7ba2c681ee4a790ac.tar.gz |
drbd: Refer to resync-rate consistently throughout the code
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'include/linux/drbd_limits.h')
-rw-r--r-- | include/linux/drbd_limits.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/linux/drbd_limits.h b/include/linux/drbd_limits.h index 3d3e2d5..48339ae 100644 --- a/include/linux/drbd_limits.h +++ b/include/linux/drbd_limits.h @@ -98,10 +98,11 @@ /* syncer { */ /* FIXME allow rate to be zero? */ -#define DRBD_RATE_MIN 1 +#define DRBD_RESYNC_RATE_MIN 1 /* channel bonding 10 GbE, or other hardware */ -#define DRBD_RATE_MAX (4 << 20) -#define DRBD_RATE_DEF 250 /* kb/second */ +#define DRBD_RESYNC_RATE_MAX (4 << 20) +#define DRBD_RESYNC_RATE_DEF 250 +#define DRBD_RESYNC_RATE_SCALE 'k' /* kilobytes */ /* less than 7 would hit performance unnecessarily. * 919 slots context information per transaction, |