]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core: order reverse dep table in same way as enum
authorLennart Poettering <lennart@poettering.net>
Wed, 14 Apr 2021 16:38:42 +0000 (18:38 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 25 May 2021 14:03:03 +0000 (16:03 +0200)
src/core/unit.c

index f401a1457c6cd8db5d30ae8fe97c5b65e93a3f8f..8f744da2c42b452daabeb0f3023ec62222251447 100644 (file)
@@ -2963,8 +2963,8 @@ int unit_add_dependency(
 
         static const UnitDependency inverse_table[_UNIT_DEPENDENCY_MAX] = {
                 [UNIT_REQUIRES] = UNIT_REQUIRED_BY,
-                [UNIT_WANTS] = UNIT_WANTED_BY,
                 [UNIT_REQUISITE] = UNIT_REQUISITE_OF,
+                [UNIT_WANTS] = UNIT_WANTED_BY,
                 [UNIT_BINDS_TO] = UNIT_BOUND_BY,
                 [UNIT_PART_OF] = UNIT_CONSISTS_OF,
                 [UNIT_UPHOLDS] = UNIT_UPHELD_BY,
@@ -2982,8 +2982,6 @@ int unit_add_dependency(
                 [UNIT_ON_SUCCESS_OF] = UNIT_ON_SUCCESS,
                 [UNIT_ON_FAILURE] = UNIT_ON_FAILURE_OF,
                 [UNIT_ON_FAILURE_OF] = UNIT_ON_FAILURE,
-                [UNIT_REFERENCES] = UNIT_REFERENCED_BY,
-                [UNIT_REFERENCED_BY] = UNIT_REFERENCES,
                 [UNIT_TRIGGERS] = UNIT_TRIGGERED_BY,
                 [UNIT_TRIGGERED_BY] = UNIT_TRIGGERS,
                 [UNIT_PROPAGATES_RELOAD_TO] = UNIT_RELOAD_PROPAGATED_FROM,
@@ -2991,6 +2989,8 @@ int unit_add_dependency(
                 [UNIT_PROPAGATES_STOP_TO] = UNIT_STOP_PROPAGATED_FROM,
                 [UNIT_STOP_PROPAGATED_FROM] = UNIT_PROPAGATES_STOP_TO,
                 [UNIT_JOINS_NAMESPACE_OF] = UNIT_JOINS_NAMESPACE_OF, /* symmetric! ðŸ‘“ */
+                [UNIT_REFERENCES] = UNIT_REFERENCED_BY,
+                [UNIT_REFERENCED_BY] = UNIT_REFERENCES,
                 [UNIT_IN_SLICE] = UNIT_SLICE_OF,
                 [UNIT_SLICE_OF] = UNIT_IN_SLICE,
         };