Patch "openrisc: Use do_kernel_power_off()" has been added to the 6.9-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    openrisc: Use do_kernel_power_off()

to the 6.9-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     openrisc-use-do_kernel_power_off.patch
and it can be found in the queue-6.9 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 821c1c4f94c8b6fc345583cda54d1730df3a28df
Author: Stafford Horne <shorne@xxxxxxxxx>
Date:   Sat Mar 30 16:29:08 2024 +0000

    openrisc: Use do_kernel_power_off()
    
    [ Upstream commit c94195a34e09dacfe2feef03602c911e82f49994 ]
    
    After commit 14c5678720bd ("power: reset: syscon-poweroff: Use
    devm_register_sys_off_handler(POWER_OFF)") setting up of pm_power_off
    was removed from the driver, this causes OpenRISC platforms using
    syscon-poweroff to no longer shutdown.
    
    The kernel now supports chained power-off handlers. Use
    do_kernel_power_off() that invokes chained power-off handlers.  All
    architectures have moved away from using pm_power_off except OpenRISC.
    
    This patch migrates openrisc to use do_kernel_power_off() instead of the
    legacy pm_power_off().
    
    Fixes: 14c5678720bd ("power: reset: syscon-poweroff: Use devm_register_sys_off_handler(POWER_OFF)")
    Signed-off-by: Stafford Horne <shorne@xxxxxxxxx>
    Reviewed-by: Sebastian Reichel <sebastian.reichel@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/openrisc/kernel/process.c b/arch/openrisc/kernel/process.c
index 86e02929f3ace..3c27d1c727189 100644
--- a/arch/openrisc/kernel/process.c
+++ b/arch/openrisc/kernel/process.c
@@ -65,7 +65,7 @@ void machine_restart(char *cmd)
 }
 
 /*
- * This is used if pm_power_off has not been set by a power management
+ * This is used if a sys-off handler was not set by a power management
  * driver, in this case we can assume we are on a simulator.  On
  * OpenRISC simulators l.nop 1 will trigger the simulator exit.
  */
@@ -89,10 +89,8 @@ void machine_halt(void)
 void machine_power_off(void)
 {
 	printk(KERN_INFO "*** MACHINE POWER OFF ***\n");
-	if (pm_power_off != NULL)
-		pm_power_off();
-	else
-		default_power_off();
+	do_kernel_power_off();
+	default_power_off();
 }
 
 /*




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux