]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
scope: tiny cleanup: UNIT(s) -> u 12033/head
authorFranck Bui <fbui@suse.com>
Wed, 20 Mar 2019 07:06:09 +0000 (08:06 +0100)
committerFranck Bui <fbui@suse.com>
Wed, 20 Mar 2019 09:51:49 +0000 (10:51 +0100)
No functional changes.

src/core/scope.c

index e478661f9486fb52849da49f4ebe745b27e3ce16..7f830522585e051f68faecacc4e379f817de0a0e 100644 (file)
@@ -333,11 +333,11 @@ static int scope_start(Unit *u) {
         (void) unit_reset_cpu_accounting(u);
         (void) unit_reset_ip_accounting(u);
 
-        unit_export_state_files(UNIT(s));
+        unit_export_state_files(u);
 
-        r = unit_attach_pids_to_cgroup(u, UNIT(s)->pids, NULL);
+        r = unit_attach_pids_to_cgroup(u, u->pids, NULL);
         if (r < 0) {
-                log_unit_warning_errno(UNIT(s), r, "Failed to add PIDs to scope's control group: %m");
+                log_unit_warning_errno(u, r, "Failed to add PIDs to scope's control group: %m");
                 scope_enter_dead(s, SCOPE_FAILURE_RESOURCES);
                 return r;
         }
@@ -347,7 +347,7 @@ static int scope_start(Unit *u) {
         scope_set_state(s, SCOPE_RUNNING);
 
         /* Start watching the PIDs currently in the scope */
-        (void) unit_enqueue_rewatch_pids(UNIT(s));
+        (void) unit_enqueue_rewatch_pids(u);
         return 1;
 }