Commit ca0e6098 authored by Lars Ellenberg's avatar Lars Ellenberg Committed by Philipp Reisner

drbd: relax the grace period of the md_sync timer again

Consolidate the ifdef's for the debug level, accidentally the used both
DEBUG and DRBD_DEBUG_MD_SYNC.  Default to off.

For production, we can safely reduce the grace period for this timer
again the the value we used to have.
Signed-off-by: default avatarPhilipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: default avatarLars Ellenberg <lars.ellenberg@linbit.com>
parent 856c50c7
...@@ -3565,7 +3565,7 @@ int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev) ...@@ -3565,7 +3565,7 @@ int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
* the meta-data super block. This function sets MD_DIRTY, and starts a * the meta-data super block. This function sets MD_DIRTY, and starts a
* timer that ensures that within five seconds you have to call drbd_md_sync(). * timer that ensures that within five seconds you have to call drbd_md_sync().
*/ */
#ifdef DRBD_DEBUG_MD_SYNC #ifdef DEBUG
void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func) void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
{ {
if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) { if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
...@@ -3578,7 +3578,7 @@ void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char * ...@@ -3578,7 +3578,7 @@ void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *
void drbd_md_mark_dirty(struct drbd_conf *mdev) void drbd_md_mark_dirty(struct drbd_conf *mdev)
{ {
if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
mod_timer(&mdev->md_sync_timer, jiffies + HZ); mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment