All of lore.kernel.org
 help / color / mirror / Atom feed
From: raz ben yehuda <razb@bitband.com>
To: lenb@kernel.org
Cc: Ingo Molnar <mingo@elte.hu>,
	linux-acpi@vger.kernel.org, lkml <linux-kernel@vger.kernel.org>
Subject: Subject: [PATCH 2/2] linux-acpi : sos api
Date: Tue, 14 Oct 2008 01:38:19 +0200	[thread overview]
Message-ID: <1223941099.5437.18.camel@raz> (raw)

From: Raz Ben Yehuda <razb@bitband.com>

SOS is a platform aimed to assign a service to an offloaded processor.
This patch is the facility for SOS (http://sos-linux.cvs.sourceforge.net/sos-linux/)

Signed-off-by: Raz Ben Yehuda <razb@bitband.com>
---
 arch/x86/kernel/process.c    |   42 +++++++++++++++++++++++++++++++++
 arch/x86/kernel/process_32.c |    2 +
 arch/x86/kernel/process_64.c |    2 +
 arch/x86/kernel/smpboot.c    |    9 +++----
 include/linux/cpu.h          |   20 +++++++++++++++
 kernel/cpu.c                 |    1
 6 files changed, 72 insertions(+), 4 deletions(-)


diff -uprN -X dontdiff linux-2.6.27/arch/x86/kernel/process_32.c linux-2.6.27-dbg/arch/x86/kernel/process_32.c
--- linux-2.6.27/arch/x86/kernel/process_32.c	2008-10-10 00:13:53.000000000 +0200
+++ linux-2.6.27-dbg/arch/x86/kernel/process_32.c	2008-10-13 23:29:04.000000000 +0200
@@ -106,6 +106,8 @@ static inline void play_dead(void)
 	 */
 	local_irq_disable();
 	/* mask all interrupts, flush any and all caches, and halt */
+	if (is_sossed(raw_smp_processor_id()))
+		run_sos();
 	wbinvd_halt();
 }
 #else
diff -uprN -X dontdiff linux-2.6.27/arch/x86/kernel/process_64.c linux-2.6.27-dbg/arch/x86/kernel/process_64.c
--- linux-2.6.27/arch/x86/kernel/process_64.c	2008-10-10 00:13:53.000000000 +0200
+++ linux-2.6.27-dbg/arch/x86/kernel/process_64.c	2008-10-13 23:14:21.000000000 +0200
@@ -101,6 +101,8 @@ static inline void play_dead(void)
 
 	local_irq_disable();
 	/* mask all interrupts, flush any and all caches, and halt */
+	if (is_sossed(raw_smp_processor_id()))
+		run_sos();
 	wbinvd_halt();
 }
 #else
diff -uprN -X dontdiff linux-2.6.27/arch/x86/kernel/process.c linux-2.6.27-dbg/arch/x86/kernel/process.c
--- linux-2.6.27/arch/x86/kernel/process.c	2008-10-10 00:13:53.000000000 +0200
+++ linux-2.6.27-dbg/arch/x86/kernel/process.c	2008-10-13 23:29:44.000000000 +0200
@@ -371,3 +371,45 @@ static int __init idle_setup(char *str)
 }
 early_param("idle", idle_setup);
 
+#ifdef CONFIG_HOTPLUG_CPU
+struct hotplug_cpu{
+	long flags;
+	void (*hotplug_cpu_dead)(void);
+};
+
+#define CPU_SOS 31
+
+DEFINE_PER_CPU(struct hotplug_cpu, soscpu);
+
+void unregister_sos(int cpuid)
+{
+	struct hotplug_cpu *cpu = &per_cpu(soscpu, cpuid);
+	cpu->hotplug_cpu_dead = NULL;
+	clear_bit(CPU_SOS, &cpu->flags);
+}
+EXPORT_SYMBOL_GPL(unregister_sos);
+
+int is_sossed(int cpuid)
+{
+	struct hotplug_cpu *cpu = &per_cpu(soscpu, cpuid);
+	return test_bit(CPU_SOS, &cpu->flags);
+}
+
+int register_sos(void (*sos_callback)(void), int cpuid)
+{
+	struct hotplug_cpu *cpu = &per_cpu(soscpu, cpuid);
+	if (is_sossed(cpuid))
+		return -1;
+	cpu->hotplug_cpu_dead = sos_callback;
+	set_bit(CPU_SOS, &cpu->flags);
+	return 0;
+}
+EXPORT_SYMBOL_GPL(register_sos);
+
+void run_sos(void)
+{
+	int cpuid = raw_smp_processor_id();
+	struct hotplug_cpu *cpu = &per_cpu(soscpu, cpuid);
+	cpu->hotplug_cpu_dead();
+}
+#endif
diff -uprN -X dontdiff linux-2.6.27/arch/x86/kernel/smpboot.c linux-2.6.27-dbg/arch/x86/kernel/smpboot.c
--- linux-2.6.27/arch/x86/kernel/smpboot.c	2008-10-10 00:13:53.000000000 +0200
+++ linux-2.6.27-dbg/arch/x86/kernel/smpboot.c	2008-10-13 23:22:48.000000000 +0200
@@ -827,8 +827,8 @@ static int __cpuinit do_boot_cpu(int api
 			/* if can't get pda memory, can't start cpu */
 	}
 #endif
-
-	alternatives_smp_switch(1);
+	if (!is_sossed(cpu))
+		alternatives_smp_switch(1);
 
 	c_idle.idle = get_idle_for_cpu(cpu);
 
@@ -1393,8 +1393,9 @@ void __cpu_die(unsigned int cpu)
 	for (i = 0; i < 10; i++) {
 		/* They ack this in play_dead by setting CPU_DEAD */
 		if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
-			printk(KERN_INFO "CPU %d is now offline\n", cpu);
-			if (1 == num_online_cpus())
+			printk(KERN_INFO "CPU %d is now offline %s\n", cpu,
+				is_sossed(cpu) ? "and SOSSED" : "");
+			if (1 == num_online_cpus() && !is_sossed(cpu))
 				alternatives_smp_switch(0);
 			return;
 		}
diff -uprN -X dontdiff linux-2.6.27/include/linux/cpu.h linux-2.6.27-dbg/include/linux/cpu.h
--- linux-2.6.27/include/linux/cpu.h	2008-10-10 00:13:53.000000000 +0200
+++ linux-2.6.27-dbg/include/linux/cpu.h	2008-10-13 23:23:42.000000000 +0200
@@ -44,6 +44,7 @@ extern int sched_create_sysfs_power_savi
 
 #ifdef CONFIG_HOTPLUG_CPU
 extern void unregister_cpu(struct cpu *cpu);
+extern void unregister_sos(int cpuid);
 #endif
 struct notifier_block;
 
@@ -52,6 +53,9 @@ struct notifier_block;
 #ifdef CONFIG_HOTPLUG_CPU
 extern int register_cpu_notifier(struct notifier_block *nb);
 extern void unregister_cpu_notifier(struct notifier_block *nb);
+extern int register_sos(void (*hotplug_cpu_dead)(void), int cpuid);
+extern int is_sossed(int cpuid);
+extern void run_sos(void);
 #else
 
 #ifndef MODULE
@@ -61,11 +65,27 @@ static inline int register_cpu_notifier(
 {
 	return 0;
 }
+
+static inline int register_sos(void (*hotplug_cpu_dead)(void), int cpuid);
+{
+	return 0;
+}
 #endif
 
 static inline void unregister_cpu_notifier(struct notifier_block *nb)
 {
 }
+
+static inline void unregister_sos(int cpuid)
+{
+}
+static inline int is_sossed(int cpuid)
+{
+	return 0;
+}
+static inline void run_sos(void)
+{
+}
 #endif
 
 int cpu_up(unsigned int cpu);
diff -uprN -X dontdiff linux-2.6.27/kernel/cpu.c linux-2.6.27-dbg/kernel/cpu.c
--- linux-2.6.27/kernel/cpu.c	2008-10-10 00:13:53.000000000 +0200
+++ linux-2.6.27-dbg/kernel/cpu.c	2008-10-13 23:14:21.000000000 +0200
@@ -389,6 +389,7 @@ out:
 	cpu_maps_update_done();
 	return err;
 }
+EXPORT_SYMBOL(cpu_up);
 
 #ifdef CONFIG_PM_SLEEP_SMP
 static cpumask_t frozen_cpus;

                 reply	other threads:[~2008-10-13 23:38 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1223941099.5437.18.camel@raz \
    --to=razb@bitband.com \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.