diff options
Diffstat (limited to 'init/reboot.cpp')
-rw-r--r-- | init/reboot.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/init/reboot.cpp b/init/reboot.cpp index 580d8a67a..9edc32808 100644 --- a/init/reboot.cpp +++ b/init/reboot.cpp @@ -616,7 +616,7 @@ static void DoReboot(unsigned int cmd, const std::string& reason, const std::str if (sem_init(&reboot_semaphore, false, 0) == -1) { // These should never fail, but if they do, skip the graceful reboot and reboot immediately. LOG(ERROR) << "sem_init() fail and RebootSystem() return!"; - RebootSystem(cmd, reboot_target); + RebootSystem(cmd, reboot_target, reason); } // Start a thread to monitor init shutdown process @@ -644,7 +644,7 @@ static void DoReboot(unsigned int cmd, const std::string& reason, const std::str // worry about unmounting it. if (!IsDataMounted("*")) { sync(); - RebootSystem(cmd, reboot_target); + RebootSystem(cmd, reboot_target, reason); abort(); } @@ -777,7 +777,7 @@ static void DoReboot(unsigned int cmd, const std::string& reason, const std::str LOG(INFO) << "Shutdown /data"; } } - RebootSystem(cmd, reboot_target); + RebootSystem(cmd, reboot_target, reason); abort(); } |