aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/drbd/drbd_int.h
diff options
context:
space:
mode:
authorPhilipp Reisner <philipp.reisner@linbit.com>2012-08-28 10:48:03 -0400
committerPhilipp Reisner <philipp.reisner@linbit.com>2012-11-09 08:11:08 -0500
commit19fffd7b0303e8843aa2decfd43fa57c9d511409 (patch)
tree19ac111fafeec46eac2b0e8cee4f41f4327a1129 /drivers/block/drbd/drbd_int.h
parentd76440181d0e05826f228189b74b4dbf64b68981 (diff)
drbd: Call drbd_md_sync() explicitly after a state change on the connection
Without this, the meta-data gets updates after 5 seconds by the md_sync_timer. Better to do it immeditaly after a state change. If the asender detects a network failure, it may take a bit until the worker processes the according after-conn-state-change work item. The worker might be blocked in sending something, i.e. it takes until it gets into its timeout. That is 6 seconds by default which is longer than the 5 seconds of the md_sync_timer. 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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h
index 1c1576b942b..f223f01b4e1 100644
--- a/drivers/block/drbd/drbd_int.h
+++ b/drivers/block/drbd/drbd_int.h
@@ -1116,6 +1116,7 @@ extern void drbd_free_bc(struct drbd_backing_dev *ldev);
1116extern void drbd_mdev_cleanup(struct drbd_conf *mdev); 1116extern void drbd_mdev_cleanup(struct drbd_conf *mdev);
1117void drbd_print_uuids(struct drbd_conf *mdev, const char *text); 1117void drbd_print_uuids(struct drbd_conf *mdev, const char *text);
1118 1118
1119extern void conn_md_sync(struct drbd_tconn *tconn);
1119extern void drbd_md_sync(struct drbd_conf *mdev); 1120extern void drbd_md_sync(struct drbd_conf *mdev);
1120extern int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev); 1121extern int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev);
1121extern void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local); 1122extern void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local);