Patch "cpu/hotplug: Remove dependancy against cpu_primary_thread_mask" has been added to the 6.5-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

    cpu/hotplug: Remove dependancy against cpu_primary_thread_mask

to the 6.5-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:
     cpu-hotplug-remove-dependancy-against-cpu_primary_th.patch
and it can be found in the queue-6.5 subdirectory.

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



commit 90dcaffd621928d693d84ea8d4a712298964266a
Author: Laurent Dufour <ldufour@xxxxxxxxxxxxx>
Date:   Wed Jul 5 16:51:34 2023 +0200

    cpu/hotplug: Remove dependancy against cpu_primary_thread_mask
    
    [ Upstream commit 7a4dcb4a5de1214c4a59448a759e2e264c2c4473 ]
    
    The commit 18415f33e2ac ("cpu/hotplug: Allow "parallel" bringup up to
    CPUHP_BP_KICK_AP_STATE") introduce a dependancy against a global variable
    cpu_primary_thread_mask exported by the X86 code. This variable is only
    used when CONFIG_HOTPLUG_PARALLEL is set.
    
    Since cpuhp_get_primary_thread_mask() and cpuhp_smt_aware() are only used
    when CONFIG_HOTPLUG_PARALLEL is set, don't define them when it is not set.
    
    No functional change.
    
    Signed-off-by: Laurent Dufour <ldufour@xxxxxxxxxxxxx>
    Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
    Tested-by: Zhang Rui <rui.zhang@xxxxxxxxx>
    Link: https://lore.kernel.org/r/20230705145143.40545-2-ldufour@xxxxxxxxxxxxx
    Stable-dep-of: d91bdd96b55c ("cpu/SMT: Make SMT control more robust against enumeration failures")
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/kernel/cpu.c b/kernel/cpu.c
index 9628ae3c2825b..dd59ffeacff2e 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -650,22 +650,8 @@ bool cpu_smt_possible(void)
 }
 EXPORT_SYMBOL_GPL(cpu_smt_possible);
 
-static inline bool cpuhp_smt_aware(void)
-{
-	return topology_smt_supported();
-}
-
-static inline const struct cpumask *cpuhp_get_primary_thread_mask(void)
-{
-	return cpu_primary_thread_mask;
-}
 #else
 static inline bool cpu_smt_allowed(unsigned int cpu) { return true; }
-static inline bool cpuhp_smt_aware(void) { return false; }
-static inline const struct cpumask *cpuhp_get_primary_thread_mask(void)
-{
-	return cpu_present_mask;
-}
 #endif
 
 static inline enum cpuhp_state
@@ -1815,6 +1801,16 @@ static int __init parallel_bringup_parse_param(char *arg)
 }
 early_param("cpuhp.parallel", parallel_bringup_parse_param);
 
+static inline bool cpuhp_smt_aware(void)
+{
+	return topology_smt_supported();
+}
+
+static inline const struct cpumask *cpuhp_get_primary_thread_mask(void)
+{
+	return cpu_primary_thread_mask;
+}
+
 /*
  * On architectures which have enabled parallel bringup this invokes all BP
  * prepare states for each of the to be onlined APs first. The last state



[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