]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Merge pull request #13281 from evverx/unleash-msan
authorEvgeny Vereshchagin <evvers@ya.ru>
Thu, 8 Aug 2019 15:38:21 +0000 (18:38 +0300)
committerGitHub <noreply@github.com>
Thu, 8 Aug 2019 15:38:21 +0000 (18:38 +0300)
fuzzit: an attempt to unleash MSan on all the fuzzers

man/systemd.kill.xml
src/login/logind-inhibit.c

index 1f9d622ce9dc24056bad47dd6207e97240bfe700..2c6fea7493973b8777a9ca28f44f40a90c6cf93c 100644 (file)
@@ -79,7 +79,7 @@
         signal (see below) is sent to all remaining processes of the
         unit's control group. If set to <option>none</option>, no
         process is killed. In this case, only the stop command will be
-        executed on unit stop, but no process be killed otherwise.
+        executed on unit stop, but no process will be killed otherwise.
         Processes remaining alive after stop are left in their control
         group and the control group continues to exist after stop
         unless it is empty.</para>
index 8a361551159f69373e1a99f7cbb6337c13318c2d..1883c97e4db21cc46175b1ad76e9782afa76543d 100644 (file)
@@ -329,6 +329,8 @@ int inhibitor_create_fifo(Inhibitor *i) {
                 r = sd_event_source_set_priority(i->event_source, SD_EVENT_PRIORITY_IDLE-10);
                 if (r < 0)
                         return r;
+
+                (void) sd_event_source_set_description(i->event_source, "inhibitor-ref");
         }
 
         /* Open writing side */