From: Amitay Isaacs Date: Mon, 7 Mar 2016 06:10:43 +0000 (+1100) Subject: ctdb-tunables: Add missing flags in the initializer X-Git-Tag: tdb-1.3.9~454 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa700deb64127726bfe1cd0fab519662c000ec11;p=thirdparty%2Fsamba.git ctdb-tunables: Add missing flags in the initializer Signed-off-by: Amitay Isaacs Reviewed-by: Martin Schwenke --- diff --git a/ctdb/server/ctdb_tunables.c b/ctdb/server/ctdb_tunables.c index ba184e71b57..0cc7be3ad06 100644 --- a/ctdb/server/ctdb_tunables.c +++ b/ctdb/server/ctdb_tunables.c @@ -79,11 +79,11 @@ static const struct { { "DeferredAttachTO", 120, offsetof(struct ctdb_tunable_list, deferred_attach_timeout), false }, { "AllowClientDBAttach", 1, offsetof(struct ctdb_tunable_list, allow_client_db_attach), false }, { "RecoverPDBBySeqNum", 1, offsetof(struct ctdb_tunable_list, recover_pdb_by_seqnum), false }, - { "DeferredRebalanceOnNodeAdd", 300, offsetof(struct ctdb_tunable_list, deferred_rebalance_on_node_add) }, - { "FetchCollapse", 1, offsetof(struct ctdb_tunable_list, fetch_collapse) }, - { "HopcountMakeSticky", 50, offsetof(struct ctdb_tunable_list, hopcount_make_sticky) }, - { "StickyDuration", 600, offsetof(struct ctdb_tunable_list, sticky_duration) }, - { "StickyPindown", 200, offsetof(struct ctdb_tunable_list, sticky_pindown) }, + { "DeferredRebalanceOnNodeAdd", 300, offsetof(struct ctdb_tunable_list, deferred_rebalance_on_node_add), false }, + { "FetchCollapse", 1, offsetof(struct ctdb_tunable_list, fetch_collapse), false }, + { "HopcountMakeSticky", 50, offsetof(struct ctdb_tunable_list, hopcount_make_sticky), false }, + { "StickyDuration", 600, offsetof(struct ctdb_tunable_list, sticky_duration), false }, + { "StickyPindown", 200, offsetof(struct ctdb_tunable_list, sticky_pindown), false }, { "NoIPTakeover", 0, offsetof(struct ctdb_tunable_list, no_ip_takeover), false }, { "DBRecordCountWarn", 100000, offsetof(struct ctdb_tunable_list, db_record_count_warn), false }, { "DBRecordSizeWarn", 10000000, offsetof(struct ctdb_tunable_list, db_record_size_warn), false },