Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2ec57d44 authored by Michael Neuling's avatar Michael Neuling Committed by Ingo Molnar
Browse files

sched: Fix spelling of sibling



No logic changes, only spelling.

Signed-off-by: default avatarMichael Neuling <mikey@neuling.org>
Cc: linuxppc-dev@ozlabs.org
Cc: David Howells <dhowells@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <15249.1277776921@neuling.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 0b2e918a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1270,7 +1270,7 @@ unsigned long randomize_et_dyn(unsigned long base)
}

#ifdef CONFIG_SMP
int arch_sd_sibiling_asym_packing(void)
int arch_sd_sibling_asym_packing(void)
{
	if (cpu_has_feature(CPU_FTR_ASYM_SMT)) {
		printk_once(KERN_INFO "Enabling Asymmetric SMT scheduling\n");
+1 −1
Original line number Diff line number Diff line
@@ -103,7 +103,7 @@ int arch_update_cpu_topology(void);
				| 1*SD_SHARE_PKG_RESOURCES		\
				| 0*SD_SERIALIZE			\
				| 0*SD_PREFER_SIBLING			\
				| arch_sd_sibiling_asym_packing()	\
				| arch_sd_sibling_asym_packing()	\
				,					\
	.last_balance		= jiffies,				\
	.balance_interval	= 1,					\
+1 −1
Original line number Diff line number Diff line
@@ -2567,7 +2567,7 @@ static inline void update_sd_lb_stats(struct sched_domain *sd, int this_cpu,
	} while (sg != sd->groups);
}

int __weak arch_sd_sibiling_asym_packing(void)
int __weak arch_sd_sibling_asym_packing(void)
{
       return 0*SD_ASYM_PACKING;
}