be0c12
From 894d307d0d149adb46e630550566e5a3f6ff8d2e Mon Sep 17 00:00:00 2001
be0c12
From: Lennart Poettering <lennart@poettering.net>
be0c12
Date: Mon, 18 Mar 2019 12:21:27 +0100
be0c12
Subject: [PATCH] core: rename unit_{start_limit|condition|assert}_test() to
be0c12
 unit_test_xyz()
be0c12
be0c12
Just some renaming, no change in behaviour.
be0c12
be0c12
Background: I'd like to add more functions unit_test_xyz() that test
be0c12
various things, hence let's streamline the naming a bit.
be0c12
be0c12
(cherry picked from commit 97a3f4ee052e1b8a0ff03accfa478e352891a84f)
be0c12
be0c12
Related: #2036608
be0c12
---
be0c12
 src/core/automount.c |  2 +-
be0c12
 src/core/mount.c     |  2 +-
be0c12
 src/core/path.c      |  2 +-
be0c12
 src/core/service.c   |  2 +-
be0c12
 src/core/socket.c    |  2 +-
be0c12
 src/core/swap.c      |  2 +-
be0c12
 src/core/timer.c     |  2 +-
be0c12
 src/core/unit.c      | 11 +++++------
be0c12
 src/core/unit.h      |  2 +-
be0c12
 9 files changed, 13 insertions(+), 14 deletions(-)
be0c12
be0c12
diff --git a/src/core/automount.c b/src/core/automount.c
be0c12
index 76e70f4dac..2bc160cb07 100644
be0c12
--- a/src/core/automount.c
be0c12
+++ b/src/core/automount.c
be0c12
@@ -808,7 +808,7 @@ static int automount_start(Unit *u) {
be0c12
                 return -ENOENT;
be0c12
         }
be0c12
 
be0c12
-        r = unit_start_limit_test(u);
be0c12
+        r = unit_test_start_limit(u);
be0c12
         if (r < 0) {
be0c12
                 automount_enter_dead(a, AUTOMOUNT_FAILURE_START_LIMIT_HIT);
be0c12
                 return r;
be0c12
diff --git a/src/core/mount.c b/src/core/mount.c
be0c12
index 7e80a0c974..aa586d88cb 100644
be0c12
--- a/src/core/mount.c
be0c12
+++ b/src/core/mount.c
be0c12
@@ -1065,7 +1065,7 @@ static int mount_start(Unit *u) {
be0c12
 
be0c12
         assert(IN_SET(m->state, MOUNT_DEAD, MOUNT_FAILED));
be0c12
 
be0c12
-        r = unit_start_limit_test(u);
be0c12
+        r = unit_test_start_limit(u);
be0c12
         if (r < 0) {
be0c12
                 mount_enter_dead(m, MOUNT_FAILURE_START_LIMIT_HIT);
be0c12
                 return r;
be0c12
diff --git a/src/core/path.c b/src/core/path.c
be0c12
index ed40bc6c19..4bccc0396b 100644
be0c12
--- a/src/core/path.c
be0c12
+++ b/src/core/path.c
be0c12
@@ -565,7 +565,7 @@ static int path_start(Unit *u) {
be0c12
                 return -ENOENT;
be0c12
         }
be0c12
 
be0c12
-        r = unit_start_limit_test(u);
be0c12
+        r = unit_test_start_limit(u);
be0c12
         if (r < 0) {
be0c12
                 path_enter_dead(p, PATH_FAILURE_START_LIMIT_HIT);
be0c12
                 return r;
be0c12
diff --git a/src/core/service.c b/src/core/service.c
be0c12
index 7969bbf071..1a1de43d0d 100644
be0c12
--- a/src/core/service.c
be0c12
+++ b/src/core/service.c
be0c12
@@ -2388,7 +2388,7 @@ static int service_start(Unit *u) {
be0c12
         assert(IN_SET(s->state, SERVICE_DEAD, SERVICE_FAILED));
be0c12
 
be0c12
         /* Make sure we don't enter a busy loop of some kind. */
be0c12
-        r = unit_start_limit_test(u);
be0c12
+        r = unit_test_start_limit(u);
be0c12
         if (r < 0) {
be0c12
                 service_enter_dead(s, SERVICE_FAILURE_START_LIMIT_HIT, false);
be0c12
                 return r;
be0c12
diff --git a/src/core/socket.c b/src/core/socket.c
be0c12
index 50c32ed8f4..09491c6677 100644
be0c12
--- a/src/core/socket.c
be0c12
+++ b/src/core/socket.c
be0c12
@@ -2469,7 +2469,7 @@ static int socket_start(Unit *u) {
be0c12
 
be0c12
         assert(IN_SET(s->state, SOCKET_DEAD, SOCKET_FAILED));
be0c12
 
be0c12
-        r = unit_start_limit_test(u);
be0c12
+        r = unit_test_start_limit(u);
be0c12
         if (r < 0) {
be0c12
                 socket_enter_dead(s, SOCKET_FAILURE_START_LIMIT_HIT);
be0c12
                 return r;
be0c12
diff --git a/src/core/swap.c b/src/core/swap.c
be0c12
index a8f127f660..823699699e 100644
be0c12
--- a/src/core/swap.c
be0c12
+++ b/src/core/swap.c
be0c12
@@ -851,7 +851,7 @@ static int swap_start(Unit *u) {
be0c12
                 if (UNIT(other)->job && UNIT(other)->job->state == JOB_RUNNING)
be0c12
                         return -EAGAIN;
be0c12
 
be0c12
-        r = unit_start_limit_test(u);
be0c12
+        r = unit_test_start_limit(u);
be0c12
         if (r < 0) {
be0c12
                 swap_enter_dead(s, SWAP_FAILURE_START_LIMIT_HIT);
be0c12
                 return r;
be0c12
diff --git a/src/core/timer.c b/src/core/timer.c
be0c12
index 1718ffc5a5..be16321296 100644
be0c12
--- a/src/core/timer.c
be0c12
+++ b/src/core/timer.c
be0c12
@@ -599,7 +599,7 @@ static int timer_start(Unit *u) {
be0c12
                 return -ENOENT;
be0c12
         }
be0c12
 
be0c12
-        r = unit_start_limit_test(u);
be0c12
+        r = unit_test_start_limit(u);
be0c12
         if (r < 0) {
be0c12
                 timer_enter_dead(t, TIMER_FAILURE_START_LIMIT_HIT);
be0c12
                 return r;
be0c12
diff --git a/src/core/unit.c b/src/core/unit.c
be0c12
index 23afa24c77..9013186d8a 100644
be0c12
--- a/src/core/unit.c
be0c12
+++ b/src/core/unit.c
be0c12
@@ -1633,7 +1633,7 @@ static bool unit_condition_test_list(Unit *u, Condition *first, const char *(*to
be0c12
         return triggered != 0;
be0c12
 }
be0c12
 
be0c12
-static bool unit_condition_test(Unit *u) {
be0c12
+static bool unit_test_condition(Unit *u) {
be0c12
         assert(u);
be0c12
 
be0c12
         dual_timestamp_get(&u->condition_timestamp);
be0c12
@@ -1642,7 +1642,7 @@ static bool unit_condition_test(Unit *u) {
be0c12
         return u->condition_result;
be0c12
 }
be0c12
 
be0c12
-static bool unit_assert_test(Unit *u) {
be0c12
+static bool unit_test_assert(Unit *u) {
be0c12
         assert(u);
be0c12
 
be0c12
         dual_timestamp_get(&u->assert_timestamp);
be0c12
@@ -1657,8 +1657,7 @@ void unit_status_printf(Unit *u, const char *status, const char *unit_status_msg
be0c12
         REENABLE_WARNING;
be0c12
 }
be0c12
 
be0c12
-
be0c12
-int unit_start_limit_test(Unit *u) {
be0c12
+int unit_test_start_limit(Unit *u) {
be0c12
         assert(u);
be0c12
 
be0c12
         if (ratelimit_below(&u->start_limit)) {
be0c12
@@ -1750,14 +1749,14 @@ int unit_start(Unit *u) {
be0c12
          * speed up activation in case there is some hold-off time,
be0c12
          * but we don't want to recheck the condition in that case. */
be0c12
         if (state != UNIT_ACTIVATING &&
be0c12
-            !unit_condition_test(u)) {
be0c12
+            !unit_test_condition(u)) {
be0c12
                 log_unit_debug(u, "Starting requested but condition failed. Not starting unit.");
be0c12
                 return -EALREADY;
be0c12
         }
be0c12
 
be0c12
         /* If the asserts failed, fail the entire job */
be0c12
         if (state != UNIT_ACTIVATING &&
be0c12
-            !unit_assert_test(u)) {
be0c12
+            !unit_test_assert(u)) {
be0c12
                 log_unit_notice(u, "Starting requested but asserts failed.");
be0c12
                 return -EPROTO;
be0c12
         }
be0c12
diff --git a/src/core/unit.h b/src/core/unit.h
be0c12
index ec45b5fb48..a8bc350b66 100644
be0c12
--- a/src/core/unit.h
be0c12
+++ b/src/core/unit.h
be0c12
@@ -786,7 +786,7 @@ static inline bool unit_supported(Unit *u) {
be0c12
 void unit_warn_if_dir_nonempty(Unit *u, const char* where);
be0c12
 int unit_fail_if_noncanonical(Unit *u, const char* where);
be0c12
 
be0c12
-int unit_start_limit_test(Unit *u);
be0c12
+int unit_test_start_limit(Unit *u);
be0c12
 
be0c12
 void unit_unref_uid(Unit *u, bool destroy_now);
be0c12
 int unit_ref_uid(Unit *u, uid_t uid, bool clean_ipc);