From: Sage Weil Date: Mon, 24 Jun 2013 19:52:44 +0000 (-0700) Subject: common/pick_addresses: behave even after internal_safe_to_start_threads X-Git-Tag: v0.65~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=eb86eebe1ba42f04b46f7c3e3419b83eb6fe7f9a;p=ceph.git common/pick_addresses: behave even after internal_safe_to_start_threads ceph-mon recently started using Preforker to working around forking issues. As a result, internal_safe_to_start_threads got set sooner and calls to pick_addresses() which try to set string config values now fail because there are no config observers for them. Work around this by observing the change while we adjust the value. We assume pick_addresses() callers are smart enough to realize that their result will be reflected by cct->_conf and not magically handled elsewhere. Fixes: #5195, #5205 Backport: cuttlefish Signed-off-by: Sage Weil Reviewed-by: Dan Mick --- diff --git a/src/common/pick_address.cc b/src/common/pick_address.cc index 90327666ad5b..ff036c613604 100644 --- a/src/common/pick_address.cc +++ b/src/common/pick_address.cc @@ -48,6 +48,24 @@ static const struct sockaddr *find_ip_in_subnet_list(CephContext *cct, return NULL; } +// observe this change +struct Observer : public md_config_obs_t { + const char *conf_var; + Observer(const char *c) : conf_var(c) {} + + const char** get_tracked_conf_keys() const { + static const char *foo[] = { + conf_var, + NULL + }; + return foo; + } + void handle_conf_change(const struct md_config_t *conf, + const std::set &changed) { + // do nothing. + } +}; + static void fill_in_one_address(CephContext *cct, const struct ifaddrs *ifa, const string networks, @@ -75,8 +93,14 @@ static void fill_in_one_address(CephContext *cct, exit(1); } + Observer obs(conf_var); + + cct->_conf->add_observer(&obs); + cct->_conf->set_val_or_die(conf_var, buf); cct->_conf->apply_changes(NULL); + + cct->_conf->remove_observer(&obs); } void pick_addresses(CephContext *cct, int needs)