qga: Rename ga_disable_not_allowed -> ga_disable_not_allowed_freeze
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
This commit is contained in:
parent
2ff49e96ac
commit
27076d0399
@ -395,7 +395,7 @@ static gint ga_strcmp(gconstpointer str1, gconstpointer str2)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* disable commands that aren't safe for fsfreeze */
|
/* disable commands that aren't safe for fsfreeze */
|
||||||
static void ga_disable_not_allowed(const QmpCommand *cmd, void *opaque)
|
static void ga_disable_not_allowed_freeze(const QmpCommand *cmd, void *opaque)
|
||||||
{
|
{
|
||||||
bool allowed = false;
|
bool allowed = false;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
@ -459,7 +459,7 @@ void ga_set_frozen(GAState *s)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
/* disable all forbidden (for frozen state) commands */
|
/* disable all forbidden (for frozen state) commands */
|
||||||
qmp_for_each_command(&ga_commands, ga_disable_not_allowed, NULL);
|
qmp_for_each_command(&ga_commands, ga_disable_not_allowed_freeze, NULL);
|
||||||
g_warning("disabling logging due to filesystem freeze");
|
g_warning("disabling logging due to filesystem freeze");
|
||||||
ga_disable_logging(s);
|
ga_disable_logging(s);
|
||||||
s->frozen = true;
|
s->frozen = true;
|
||||||
@ -1350,7 +1350,7 @@ static GAState *initialize_agent(GAConfig *config, int socket_activation)
|
|||||||
s->deferred_options.log_filepath = config->log_filepath;
|
s->deferred_options.log_filepath = config->log_filepath;
|
||||||
}
|
}
|
||||||
ga_disable_logging(s);
|
ga_disable_logging(s);
|
||||||
qmp_for_each_command(&ga_commands, ga_disable_not_allowed, NULL);
|
qmp_for_each_command(&ga_commands, ga_disable_not_allowed_freeze, NULL);
|
||||||
} else {
|
} else {
|
||||||
if (config->daemonize) {
|
if (config->daemonize) {
|
||||||
become_daemon(config->pid_filepath);
|
become_daemon(config->pid_filepath);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user