diff options
author | Philipp Reisner <philipp.reisner@linbit.com> | 2010-05-05 14:53:33 -0400 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2010-05-17 19:26:51 -0400 |
commit | a8cdfd8d3bf0b6d2bbe792f5e74f54ccc6bc1d4f (patch) | |
tree | 6301877820e111e09c3ff4fe9ab7aece59dd71c7 /drivers/block/drbd/drbd_int.h | |
parent | eedf386ae9d9e80a5669107e960090951e62f3a3 (diff) |
drbd: A fixes to the new resync speed code
* Mention P_DELAY_PROBE in the packet naming array
* Do not corrupt the mdev->data.work list in case the timer goes
off before delay_probe_work got handled by the worker
* Do not mod_timer() twice for a single delay_probe pair
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'drivers/block/drbd/drbd_int.h')
-rw-r--r-- | drivers/block/drbd/drbd_int.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h index 210870ed8a79..37380d2c869d 100644 --- a/drivers/block/drbd/drbd_int.h +++ b/drivers/block/drbd/drbd_int.h | |||
@@ -268,6 +268,7 @@ static inline const char *cmdname(enum drbd_packets cmd) | |||
268 | [P_CSUM_RS_REQUEST] = "CsumRSRequest", | 268 | [P_CSUM_RS_REQUEST] = "CsumRSRequest", |
269 | [P_RS_IS_IN_SYNC] = "CsumRSIsInSync", | 269 | [P_RS_IS_IN_SYNC] = "CsumRSIsInSync", |
270 | [P_COMPRESSED_BITMAP] = "CBitmap", | 270 | [P_COMPRESSED_BITMAP] = "CBitmap", |
271 | [P_DELAY_PROBE] = "DelayProbe", | ||
271 | [P_MAX_CMD] = NULL, | 272 | [P_MAX_CMD] = NULL, |
272 | }; | 273 | }; |
273 | 274 | ||