summaryrefslogtreecommitdiff
path: root/src/nm-cloud-setup
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-03-08 14:29:51 +0100
committerThomas Haller <thaller@redhat.com>2022-03-13 11:59:42 +0100
commit9b030a398895e554e0848f562dcd0fc307263288 (patch)
tree06f24445add7bbe2218a821300f9e6cceb88cd88 /src/nm-cloud-setup
parent15e88379452e231d1821c0d7f8e4df89ccd86e8b (diff)
downloadNetworkManager-9b030a398895e554e0848f562dcd0fc307263288.tar.gz
all: change scheduling priority for idle actions to G_PRIORITY_DEFAULT_IDLE
g_idle_add() uses G_PRIORITY_DEFAULT_IDLE priority. Most of the time we don't care much about the priority. But at the places that this patch changes, I think that using G_PRIORITY_DEFAULT_IDLE (and following g_idle_add()) is more correct. The reason for this is not very strong, except that it's probably the better choice. And the old choice was made because I didn't realize that g_idle_add() uses another default priority. Hence, the old choice was not for good reasons either.
Diffstat (limited to 'src/nm-cloud-setup')
-rw-r--r--src/nm-cloud-setup/nm-cloud-setup-utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nm-cloud-setup/nm-cloud-setup-utils.c b/src/nm-cloud-setup/nm-cloud-setup-utils.c
index bf705549f3..e505f8bd03 100644
--- a/src/nm-cloud-setup/nm-cloud-setup-utils.c
+++ b/src/nm-cloud-setup/nm-cloud-setup-utils.c
@@ -146,7 +146,7 @@ nmcs_wait_for_objects_iterate_until_done(GMainContext *context, int timeout_msec
nm_auto_destroy_and_unref_gsource GSource *idle_source = NULL;
idle_source =
- nm_g_source_attach(nm_g_idle_source_new(G_PRIORITY_DEFAULT,
+ nm_g_source_attach(nm_g_idle_source_new(G_PRIORITY_DEFAULT_IDLE,
_wait_for_objects_iterate_until_done_idle_cb,
&data,
NULL),
@@ -364,7 +364,7 @@ nmcs_utils_poll(int poll_timeout_ms,
}
poll_task_data->source_next_poll = nm_g_source_attach(
- nm_g_idle_source_new(G_PRIORITY_DEFAULT, _poll_start_cb, poll_task_data, NULL),
+ nm_g_idle_source_new(G_PRIORITY_DEFAULT_IDLE, _poll_start_cb, poll_task_data, NULL),
poll_task_data->context);
if (cancellable) {