x86: Free per-cpu area for offline cpu via RCU.
authorKeir Fraser <keir@xen.org>
Sat, 8 Jan 2011 09:14:23 +0000 (09:14 +0000)
committerKeir Fraser <keir@xen.org>
Sat, 8 Jan 2011 09:14:23 +0000 (09:14 +0000)
This allows other CPUs to reference per-cpu areas with less strict
locking. In particular, timer.c access a per-cpu lock with reference
to a per-timer cpu field which it accesses with no synchronisation.

One subtlety is that this prevents us bringing a cpu back online until
the RCU work is completed. In this case we return EBUSY and the
tool stack can report the (unlikely) error, or retry, as it sees fit.

Signed-off-by: Keir Fraser <keir@xen.org>
xen/arch/x86/percpu.c

index ea82647b42c86f1014aff9436204d438f81382d2..e5450248adaacc40978b2a45f0b39be7e6419b08 100644 (file)
@@ -3,6 +3,7 @@
 #include <xen/cpu.h>
 #include <xen/init.h>
 #include <xen/mm.h>
+#include <xen/rcupdate.h>
 
 unsigned long __per_cpu_offset[NR_CPUS];
 #define INVALID_PERCPU_AREA (-(long)__per_cpu_start)
@@ -19,7 +20,7 @@ static int init_percpu_area(unsigned int cpu)
 {
     char *p;
     if ( __per_cpu_offset[cpu] != INVALID_PERCPU_AREA )
-        return 0;
+        return -EBUSY;
     if ( (p = alloc_xenheap_pages(PERCPU_ORDER, 0)) == NULL )
         return -ENOMEM;
     memset(p, 0, __per_cpu_data_end - __per_cpu_start);
@@ -27,13 +28,28 @@ static int init_percpu_area(unsigned int cpu)
     return 0;
 }
 
-static void free_percpu_area(unsigned int cpu)
+struct free_info {
+    unsigned int cpu;
+    struct rcu_head rcu;
+};
+static DEFINE_PER_CPU(struct free_info, free_info);
+
+static void _free_percpu_area(struct rcu_head *head)
 {
+    struct free_info *info = container_of(head, struct free_info, rcu);
+    unsigned int cpu = info->cpu;
     char *p = __per_cpu_start + __per_cpu_offset[cpu];
     free_xenheap_pages(p, PERCPU_ORDER);
     __per_cpu_offset[cpu] = INVALID_PERCPU_AREA;
 }
 
+static void free_percpu_area(unsigned int cpu)
+{
+    struct free_info *info = &per_cpu(free_info, cpu);
+    info->cpu = cpu;
+    call_rcu(&info->rcu, _free_percpu_area);
+}
+
 static int cpu_percpu_callback(
     struct notifier_block *nfb, unsigned long action, void *hcpu)
 {