mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-03-09 15:40:20 +00:00
49 lines
1.2 KiB
Diff
49 lines
1.2 KiB
Diff
From 76f6475c036de43457c980bb61560f4f0d2e8210 Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Tue, 5 Apr 2016 19:40:12 +0100
|
|
Subject: [PATCH 045/697] reboot: Use power off rather than busy spinning when
|
|
halt is requested
|
|
|
|
reboot: Use power off rather than busy spinning when halt is requested
|
|
|
|
Busy spinning after halt is dumb
|
|
We've previously applied this patch to arch/arm
|
|
but it is currenltly missing in arch/arm64
|
|
|
|
Pi4 after "sudo halt" uses 520mA
|
|
Pi4 after "sudo shutdown now" uses 310mA
|
|
|
|
Make them both use the lower powered option
|
|
|
|
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
|
|
---
|
|
arch/arm/kernel/reboot.c | 4 +---
|
|
arch/arm64/kernel/process.c | 4 +---
|
|
2 files changed, 2 insertions(+), 6 deletions(-)
|
|
|
|
--- a/arch/arm/kernel/reboot.c
|
|
+++ b/arch/arm/kernel/reboot.c
|
|
@@ -102,9 +102,7 @@ void machine_shutdown(void)
|
|
*/
|
|
void machine_halt(void)
|
|
{
|
|
- local_irq_disable();
|
|
- smp_send_stop();
|
|
- while (1);
|
|
+ machine_power_off();
|
|
}
|
|
|
|
/*
|
|
--- a/arch/arm64/kernel/process.c
|
|
+++ b/arch/arm64/kernel/process.c
|
|
@@ -97,9 +97,7 @@ void machine_shutdown(void)
|
|
*/
|
|
void machine_halt(void)
|
|
{
|
|
- local_irq_disable();
|
|
- smp_send_stop();
|
|
- while (1);
|
|
+ machine_power_off();
|
|
}
|
|
|
|
/*
|