1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-24 02:04:21 +03:00

initial part of new vacuuming patch.

create some new fields for ctdb_db and tunables

(This used to be ctdb commit 3a8e7d36cc42aedf4b7665364224140dcbfb3efa)
This commit is contained in:
Ronnie Sahlberg 2009-07-29 13:25:43 +10:00
parent cca0aae1f5
commit fb63d27e4e

View File

@ -108,6 +108,8 @@ struct ctdb_tunable {
uint32_t reclock_latency_ms;
uint32_t recovery_drop_all_ips;
uint32_t verify_recovery_lock;
uint32_t vacuum_default_interval;
uint32_t vacuum_max_run_time;
};
/*
@ -441,6 +443,7 @@ struct ctdb_db_context {
struct timed_event *te;
struct ctdb_traverse_local_handle *traverse;
bool transaction_active;
struct ctdb_vacuum_handle *vacuum_handle;
};
@ -1455,4 +1458,6 @@ int ctdb_ctrl_report_recd_lock_latency(struct ctdb_context *ctdb, struct timeval
int32_t ctdb_control_stop_node(struct ctdb_context *ctdb, struct ctdb_req_control *c, bool *async_reply);
int32_t ctdb_control_continue_node(struct ctdb_context *ctdb);
int ctdb_vacuum_init(struct ctdb_db_context *ctdb_db);
#endif