diff options
author | Lars Ellenberg <lars.ellenberg@linbit.com> | 2010-08-03 20:20:20 +0200 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2010-08-07 18:53:57 +0200 |
commit | e7f52dfb4f378ea1bbfd4476f4e8ba42f5fb332c (patch) | |
tree | 1f31f9c3fd2f3c9150d08c9429b3c2a36f15d5f5 /include/linux/drbd_nl.h | |
parent | 85f4cc17a62c3ac9edeaf120cdae7261df458053 (diff) | |
download | linux-3.10-e7f52dfb4f378ea1bbfd4476f4e8ba42f5fb332c.tar.gz linux-3.10-e7f52dfb4f378ea1bbfd4476f4e8ba42f5fb332c.tar.bz2 linux-3.10-e7f52dfb4f378ea1bbfd4476f4e8ba42f5fb332c.zip |
drbd: revert "delay probes", feature is being re-implemented differently
It was a now abandoned attempt to throttle resync bandwidth
based on the delay it causes on the bulk data socket.
It has no userbase yet, and has been disabled by
9173465ccb51c09cc3102a10af93e9f469a0af6f already.
This removes the now unused code.
The basic feature, namely using up "idle" bandwith
of network and disk IO subsystem, with minimal impact
to application IO, is being reimplemented differently.
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'include/linux/drbd_nl.h')
-rw-r--r-- | include/linux/drbd_nl.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/linux/drbd_nl.h b/include/linux/drbd_nl.h index ce77a746fc9..5f042810a56 100644 --- a/include/linux/drbd_nl.h +++ b/include/linux/drbd_nl.h @@ -78,10 +78,11 @@ NL_PACKET(syncer_conf, 8, NL_INTEGER( 30, T_MAY_IGNORE, rate) NL_INTEGER( 31, T_MAY_IGNORE, after) NL_INTEGER( 32, T_MAY_IGNORE, al_extents) - NL_INTEGER( 71, T_MAY_IGNORE, dp_volume) - NL_INTEGER( 72, T_MAY_IGNORE, dp_interval) - NL_INTEGER( 73, T_MAY_IGNORE, throttle_th) - NL_INTEGER( 74, T_MAY_IGNORE, hold_off_th) +/* NL_INTEGER( 71, T_MAY_IGNORE, dp_volume) + * NL_INTEGER( 72, T_MAY_IGNORE, dp_interval) + * NL_INTEGER( 73, T_MAY_IGNORE, throttle_th) + * NL_INTEGER( 74, T_MAY_IGNORE, hold_off_th) + * feature will be reimplemented differently with 8.3.9 */ NL_STRING( 52, T_MAY_IGNORE, verify_alg, SHARED_SECRET_MAX) NL_STRING( 51, T_MAY_IGNORE, cpu_mask, 32) NL_STRING( 64, T_MAY_IGNORE, csums_alg, SHARED_SECRET_MAX) |