From: "Srivatsa S. Bhat" <srivatsa.bhat@linux.vnet.ibm.com> To: peterz@infradead.org, oleg@redhat.com, paulmck@linux.vnet.ibm.com, mingo@kernel.org, namhyung@kernel.org, walken@google.com, vincent.guittot@linaro.org, laijs@cn.fujitsu.com Cc: rostedt@goodmis.org, wangyun@linux.vnet.ibm.com, xiaoguangrong@linux.vnet.ibm.com, sbw@mit.edu, fweisbec@gmail.com, zhong@linux.vnet.ibm.com, nikunj@linux.vnet.ibm.com, srivatsa.bhat@linux.vnet.ibm.com, linux-pm@vger.kernel.org, linux-arch@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Rusty Russell <rusty@rustcorp.com.au>, Alex Shi <alex.shi@intel.com>, KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>, Tejun Heo <tj@kernel.org>, Thomas Gleixner <tglx@linutronix.de>, Andrew Morton <akpm@linux-foundation.org>, Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>, "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>"Srivatsa S. Bhat" <srivatsa.bhat@linux.vnet.ibm.com> Subject: [PATCH v2 04/45] CPU hotplug: Add infrastructure to check lacking hotplug synchronization Date: Wed, 26 Jun 2013 01:56:27 +0530 [thread overview] Message-ID: <20130625202627.16593.77574.stgit@srivatsabhat.in.ibm.com> (raw) In-Reply-To: <20130625202452.16593.22810.stgit@srivatsabhat.in.ibm.com> Add a debugging infrastructure to warn if an atomic hotplug reader has not invoked get_online_cpus_atomic() before traversing/accessing the cpu_online_mask. Encapsulate these checks under a new debug config option DEBUG_HOTPLUG_CPU. This debugging infrastructure proves useful in the tree-wide conversion of atomic hotplug readers from preempt_disable() to the new APIs, and help us catch the places we missed, much before we actually get rid of stop_machine(). We can perhaps remove the debugging checks later on. Cc: Rusty Russell <rusty@rustcorp.com.au> Cc: Alex Shi <alex.shi@intel.com> Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: Tejun Heo <tj@kernel.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com> Cc: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com> --- include/linux/cpumask.h | 12 ++++++ kernel/cpu.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index d08e4d2..9197ca4 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h @@ -101,6 +101,18 @@ extern const struct cpumask *const cpu_active_mask; #define cpu_active(cpu) ((cpu) == 0) #endif +#ifdef CONFIG_DEBUG_HOTPLUG_CPU +extern void check_hotplug_safe_cpumask(const struct cpumask *mask); +extern void check_hotplug_safe_cpu(unsigned int cpu, + const struct cpumask *mask); +#else +static inline void check_hotplug_safe_cpumask(const struct cpumask *mask) { } +static inline void check_hotplug_safe_cpu(unsigned int cpu, + const struct cpumask *mask) +{ +} +#endif + /* verify cpu argument to cpumask_* operators */ static inline unsigned int cpumask_check(unsigned int cpu) { diff --git a/kernel/cpu.c b/kernel/cpu.c index 860f51a..5297ec1 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -63,6 +63,92 @@ static struct { .refcount = 0, }; +#ifdef CONFIG_DEBUG_HOTPLUG_CPU + +static DEFINE_PER_CPU(unsigned long, atomic_reader_refcnt); + +static int current_is_hotplug_safe(const struct cpumask *mask) +{ + + /* If we are not dealing with cpu_online_mask, don't complain. */ + if (mask != cpu_online_mask) + return 1; + + /* If this is the task doing hotplug, don't complain. */ + if (unlikely(current == cpu_hotplug.active_writer)) + return 1; + + /* If we are in early boot, don't complain. */ + if (system_state != SYSTEM_RUNNING) + return 1; + + /* + * Check if the current task is in atomic context and it has + * invoked get_online_cpus_atomic() to synchronize with + * CPU Hotplug. + */ + if (preempt_count() || irqs_disabled()) + return this_cpu_read(atomic_reader_refcnt); + else + return 1; /* No checks for non-atomic contexts for now */ +} + +static inline void warn_hotplug_unsafe(void) +{ + WARN_ONCE(1, "Must use get/put_online_cpus_atomic() to synchronize" + " with CPU hotplug\n"); +} + +/* + * Check if the task (executing in atomic context) has the required protection + * against CPU hotplug, while accessing the specified cpumask. + */ +void check_hotplug_safe_cpumask(const struct cpumask *mask) +{ + if (!current_is_hotplug_safe(mask)) + warn_hotplug_unsafe(); +} +EXPORT_SYMBOL_GPL(check_hotplug_safe_cpumask); + +/* + * Similar to check_hotplug_safe_cpumask(), except that we don't complain + * if the task (executing in atomic context) is testing whether the CPU it + * is executing on is online or not. + * + * (A task executing with preemption disabled on a CPU, automatically prevents + * offlining that CPU, irrespective of the actual implementation of CPU + * offline. So we don't enforce holding of get_online_cpus_atomic() for that + * case). + */ +void check_hotplug_safe_cpu(unsigned int cpu, const struct cpumask *mask) +{ + if(!current_is_hotplug_safe(mask) && cpu != smp_processor_id()) + warn_hotplug_unsafe(); +} +EXPORT_SYMBOL_GPL(check_hotplug_safe_cpu); + +static inline void atomic_reader_refcnt_inc(void) +{ + this_cpu_inc(atomic_reader_refcnt); +} + +static inline void atomic_reader_refcnt_dec(void) +{ + this_cpu_dec(atomic_reader_refcnt); +} + +#else + +static inline void atomic_reader_refcnt_inc(void) +{ +} + +static inline void atomic_reader_refcnt_dec(void) +{ +} + +#endif + void get_online_cpus(void) { might_sleep(); @@ -189,12 +275,15 @@ unsigned int get_online_cpus_atomic(void) * from going offline. */ preempt_disable(); + atomic_reader_refcnt_inc(); + return smp_processor_id(); } EXPORT_SYMBOL_GPL(get_online_cpus_atomic); void put_online_cpus_atomic(void) { + atomic_reader_refcnt_dec(); preempt_enable(); } EXPORT_SYMBOL_GPL(put_online_cpus_atomic);
WARNING: multiple messages have this Message-ID (diff)
From: "Srivatsa S. Bhat" <srivatsa.bhat@linux.vnet.ibm.com> To: tglx@linutronix.de, peterz@infradead.org, tj@kernel.org, oleg@redhat.com, paulmck@linux.vnet.ibm.com, rusty@rustcorp.com.au, mingo@kernel.org, akpm@linux-foundation.org, namhyung@kernel.org, walken@google.com, vincent.guittot@linaro.org, laijs@cn.fujitsu.com Cc: rostedt@goodmis.org, wangyun@linux.vnet.ibm.com, xiaoguangrong@linux.vnet.ibm.com, sbw@mit.edu, fweisbec@gmail.com, zhong@linux.vnet.ibm.com, nikunj@linux.vnet.ibm.com, srivatsa.bhat@linux.vnet.ibm.com, linux-pm@vger.kernel.org, linux-arch@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Alex Shi <alex.shi@intel.com>, KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>, Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>, "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>"Srivatsa S. Bhat" <srivatsa.bhat@linux.vnet.ibm.com> Subject: [PATCH v2 04/45] CPU hotplug: Add infrastructure to check lacking hotplug synchronization Date: Wed, 26 Jun 2013 01:56:27 +0530 [thread overview] Message-ID: <20130625202627.16593.77574.stgit@srivatsabhat.in.ibm.com> (raw) Message-ID: <20130625202627.79R1O0zIFe1llfyALNBB30j9R_xMF9Imga-QhOBf9DM@z> (raw) In-Reply-To: <20130625202452.16593.22810.stgit@srivatsabhat.in.ibm.com> Add a debugging infrastructure to warn if an atomic hotplug reader has not invoked get_online_cpus_atomic() before traversing/accessing the cpu_online_mask. Encapsulate these checks under a new debug config option DEBUG_HOTPLUG_CPU. This debugging infrastructure proves useful in the tree-wide conversion of atomic hotplug readers from preempt_disable() to the new APIs, and help us catch the places we missed, much before we actually get rid of stop_machine(). We can perhaps remove the debugging checks later on. Cc: Rusty Russell <rusty@rustcorp.com.au> Cc: Alex Shi <alex.shi@intel.com> Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Cc: Tejun Heo <tj@kernel.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com> Cc: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com> --- include/linux/cpumask.h | 12 ++++++ kernel/cpu.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index d08e4d2..9197ca4 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h @@ -101,6 +101,18 @@ extern const struct cpumask *const cpu_active_mask; #define cpu_active(cpu) ((cpu) == 0) #endif +#ifdef CONFIG_DEBUG_HOTPLUG_CPU +extern void check_hotplug_safe_cpumask(const struct cpumask *mask); +extern void check_hotplug_safe_cpu(unsigned int cpu, + const struct cpumask *mask); +#else +static inline void check_hotplug_safe_cpumask(const struct cpumask *mask) { } +static inline void check_hotplug_safe_cpu(unsigned int cpu, + const struct cpumask *mask) +{ +} +#endif + /* verify cpu argument to cpumask_* operators */ static inline unsigned int cpumask_check(unsigned int cpu) { diff --git a/kernel/cpu.c b/kernel/cpu.c index 860f51a..5297ec1 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -63,6 +63,92 @@ static struct { .refcount = 0, }; +#ifdef CONFIG_DEBUG_HOTPLUG_CPU + +static DEFINE_PER_CPU(unsigned long, atomic_reader_refcnt); + +static int current_is_hotplug_safe(const struct cpumask *mask) +{ + + /* If we are not dealing with cpu_online_mask, don't complain. */ + if (mask != cpu_online_mask) + return 1; + + /* If this is the task doing hotplug, don't complain. */ + if (unlikely(current == cpu_hotplug.active_writer)) + return 1; + + /* If we are in early boot, don't complain. */ + if (system_state != SYSTEM_RUNNING) + return 1; + + /* + * Check if the current task is in atomic context and it has + * invoked get_online_cpus_atomic() to synchronize with + * CPU Hotplug. + */ + if (preempt_count() || irqs_disabled()) + return this_cpu_read(atomic_reader_refcnt); + else + return 1; /* No checks for non-atomic contexts for now */ +} + +static inline void warn_hotplug_unsafe(void) +{ + WARN_ONCE(1, "Must use get/put_online_cpus_atomic() to synchronize" + " with CPU hotplug\n"); +} + +/* + * Check if the task (executing in atomic context) has the required protection + * against CPU hotplug, while accessing the specified cpumask. + */ +void check_hotplug_safe_cpumask(const struct cpumask *mask) +{ + if (!current_is_hotplug_safe(mask)) + warn_hotplug_unsafe(); +} +EXPORT_SYMBOL_GPL(check_hotplug_safe_cpumask); + +/* + * Similar to check_hotplug_safe_cpumask(), except that we don't complain + * if the task (executing in atomic context) is testing whether the CPU it + * is executing on is online or not. + * + * (A task executing with preemption disabled on a CPU, automatically prevents + * offlining that CPU, irrespective of the actual implementation of CPU + * offline. So we don't enforce holding of get_online_cpus_atomic() for that + * case). + */ +void check_hotplug_safe_cpu(unsigned int cpu, const struct cpumask *mask) +{ + if(!current_is_hotplug_safe(mask) && cpu != smp_processor_id()) + warn_hotplug_unsafe(); +} +EXPORT_SYMBOL_GPL(check_hotplug_safe_cpu); + +static inline void atomic_reader_refcnt_inc(void) +{ + this_cpu_inc(atomic_reader_refcnt); +} + +static inline void atomic_reader_refcnt_dec(void) +{ + this_cpu_dec(atomic_reader_refcnt); +} + +#else + +static inline void atomic_reader_refcnt_inc(void) +{ +} + +static inline void atomic_reader_refcnt_dec(void) +{ +} + +#endif + void get_online_cpus(void) { might_sleep(); @@ -189,12 +275,15 @@ unsigned int get_online_cpus_atomic(void) * from going offline. */ preempt_disable(); + atomic_reader_refcnt_inc(); + return smp_processor_id(); } EXPORT_SYMBOL_GPL(get_online_cpus_atomic); void put_online_cpus_atomic(void) { + atomic_reader_refcnt_dec(); preempt_enable(); } EXPORT_SYMBOL_GPL(put_online_cpus_atomic);
next prev parent reply other threads:[~2013-06-25 20:26 UTC|newest] Thread overview: 130+ messages / expand[flat|nested] mbox.gz Atom feed top 2013-06-25 20:25 [PATCH v2 00/45] CPU hotplug: stop_machine()-free CPU hotplug, part 1 Srivatsa S. Bhat 2013-06-25 20:25 ` Srivatsa S. Bhat 2013-06-25 20:25 ` [PATCH v2 01/45] CPU hotplug: Provide APIs to prevent CPU offline from atomic context Srivatsa S. Bhat 2013-06-25 20:25 ` Srivatsa S. Bhat 2013-06-25 20:26 ` [PATCH v2 02/45] CPU hotplug: Clarify the usage of different synchronization APIs Srivatsa S. Bhat 2013-06-25 20:26 ` Srivatsa S. Bhat 2013-06-25 20:26 ` [PATCH v2 03/45] Documentation, CPU hotplug: Recommend usage of get/put_online_cpus_atomic() Srivatsa S. Bhat 2013-06-25 20:26 ` Srivatsa S. Bhat 2013-06-25 20:26 ` Srivatsa S. Bhat [this message] 2013-06-25 20:26 ` [PATCH v2 04/45] CPU hotplug: Add infrastructure to check lacking hotplug synchronization Srivatsa S. Bhat 2013-06-25 20:26 ` [PATCH v2 05/45] CPU hotplug: Protect set_cpu_online() to avoid false-positives Srivatsa S. Bhat 2013-06-25 20:26 ` Srivatsa S. Bhat 2013-06-25 20:26 ` [PATCH v2 06/45] CPU hotplug: Sprinkle debugging checks to catch locking bugs Srivatsa S. Bhat 2013-06-25 20:26 ` Srivatsa S. Bhat 2013-06-25 20:26 ` [PATCH v2 07/45] CPU hotplug: Expose the new debug config option Srivatsa S. Bhat 2013-06-25 20:26 ` Srivatsa S. Bhat 2013-06-25 20:26 ` [PATCH v2 08/45] CPU hotplug: Convert preprocessor macros to static inline functions Srivatsa S. Bhat 2013-06-25 20:26 ` Srivatsa S. Bhat 2013-06-25 20:27 ` [PATCH v2 09/45] smp: Use get/put_online_cpus_atomic() to prevent CPU offline Srivatsa S. Bhat 2013-06-25 20:27 ` Srivatsa S. Bhat 2013-06-25 20:27 ` [PATCH v2 10/45] sched/core: " Srivatsa S. Bhat 2013-06-25 20:27 ` Srivatsa S. Bhat 2013-06-25 20:27 ` [PATCH v2 11/45] migration: Use raw_spin_lock/unlock since interrupts are already disabled Srivatsa S. Bhat 2013-06-25 20:27 ` Srivatsa S. Bhat 2013-06-25 20:27 ` [PATCH v2 12/45] sched/fair: Use get/put_online_cpus_atomic() to prevent CPU offline Srivatsa S. Bhat 2013-06-25 20:27 ` Srivatsa S. Bhat 2013-06-25 20:27 ` [PATCH v2 13/45] timer: " Srivatsa S. Bhat 2013-06-25 20:27 ` Srivatsa S. Bhat 2013-06-25 20:27 ` [PATCH v2 14/45] sched/rt: " Srivatsa S. Bhat 2013-06-25 20:27 ` Srivatsa S. Bhat 2013-06-25 20:27 ` [PATCH v2 15/45] rcu: " Srivatsa S. Bhat 2013-06-25 20:27 ` Srivatsa S. Bhat 2013-06-25 22:00 ` Paul E. McKenney 2013-06-26 14:09 ` Srivatsa S. Bhat 2013-06-26 14:29 ` David Laight 2013-06-26 14:29 ` David Laight 2013-06-26 14:34 ` Paul E. McKenney 2013-06-26 14:51 ` Steven Rostedt 2013-06-26 14:51 ` Steven Rostedt 2013-06-26 15:21 ` Tejun Heo 2013-06-26 15:33 ` Steven Rostedt 2013-06-26 15:33 ` Steven Rostedt 2013-06-26 17:29 ` Tejun Heo 2013-06-26 18:28 ` Srivatsa S. Bhat 2013-06-26 18:28 ` Srivatsa S. Bhat 2013-06-26 21:34 ` Tejun Heo 2013-06-26 21:34 ` Tejun Heo 2013-06-27 6:53 ` Srivatsa S. Bhat 2013-06-27 6:53 ` Srivatsa S. Bhat 2013-06-26 18:22 ` Srivatsa S. Bhat 2013-06-26 18:22 ` Srivatsa S. Bhat 2013-06-27 8:54 ` David Laight 2013-06-27 8:54 ` David Laight 2013-06-27 10:06 ` Srivatsa S. Bhat 2013-06-26 14:45 ` Paul E. McKenney 2013-06-26 18:18 ` Srivatsa S. Bhat 2013-06-26 14:33 ` Paul E. McKenney 2013-06-25 20:28 ` [PATCH v2 16/45] tick-broadcast: " Srivatsa S. Bhat 2013-06-25 20:28 ` Srivatsa S. Bhat 2013-06-25 20:28 ` [PATCH v2 17/45] time/clocksource: " Srivatsa S. Bhat 2013-06-25 20:28 ` Srivatsa S. Bhat 2013-06-25 20:28 ` [PATCH v2 18/45] softirq: " Srivatsa S. Bhat 2013-06-25 20:28 ` Srivatsa S. Bhat 2013-06-25 20:28 ` [PATCH v2 19/45] irq: " Srivatsa S. Bhat 2013-06-25 20:28 ` Srivatsa S. Bhat 2013-06-25 20:29 ` [PATCH v2 20/45] net: " Srivatsa S. Bhat 2013-06-25 20:29 ` Srivatsa S. Bhat 2013-06-25 20:29 ` [PATCH v2 21/45] block: " Srivatsa S. Bhat 2013-06-25 20:29 ` Srivatsa S. Bhat 2013-06-25 20:29 ` [PATCH v2 22/45] percpu_counter: " Srivatsa S. Bhat 2013-06-25 20:29 ` Srivatsa S. Bhat 2013-06-25 20:29 ` [PATCH v2 23/45] infiniband: ehca: " Srivatsa S. Bhat 2013-06-25 20:29 ` Srivatsa S. Bhat 2013-06-25 20:29 ` [PATCH v2 24/45] [SCSI] fcoe: " Srivatsa S. Bhat 2013-06-25 20:29 ` Srivatsa S. Bhat 2013-06-25 20:30 ` [PATCH v2 25/45] staging/octeon: " Srivatsa S. Bhat 2013-06-25 20:30 ` Srivatsa S. Bhat 2013-06-25 20:45 ` Greg Kroah-Hartman 2013-06-25 20:45 ` Greg Kroah-Hartman 2013-06-25 20:30 ` [PATCH v2 26/45] x86: " Srivatsa S. Bhat 2013-06-25 20:30 ` Srivatsa S. Bhat 2013-06-25 20:30 ` [PATCH v2 27/45] perf/x86: " Srivatsa S. Bhat 2013-06-25 20:30 ` Srivatsa S. Bhat 2013-06-25 20:30 ` [PATCH v2 28/45] KVM: " Srivatsa S. Bhat 2013-06-25 20:30 ` Srivatsa S. Bhat 2013-06-26 8:20 ` Paolo Bonzini 2013-06-25 20:30 ` [PATCH v2 29/45] kvm/vmx: " Srivatsa S. Bhat 2013-06-25 20:30 ` Srivatsa S. Bhat 2013-06-26 7:46 ` Paolo Bonzini 2013-06-26 8:06 ` Srivatsa S. Bhat 2013-06-26 8:23 ` Paolo Bonzini 2013-06-26 8:23 ` Paolo Bonzini 2013-06-26 8:41 ` Srivatsa S. Bhat 2013-06-26 8:41 ` Srivatsa S. Bhat 2013-06-26 8:57 ` Paolo Bonzini 2013-06-26 8:57 ` Paolo Bonzini 2013-06-25 20:30 ` [PATCH v2 30/45] x86/xen: " Srivatsa S. Bhat 2013-06-25 20:30 ` Srivatsa S. Bhat 2013-06-25 20:31 ` [PATCH v2 31/45] alpha/smp: " Srivatsa S. Bhat 2013-06-25 20:31 ` Srivatsa S. Bhat 2013-06-25 20:31 ` [PATCH v2 32/45] blackfin/smp: " Srivatsa S. Bhat 2013-06-25 20:31 ` Srivatsa S. Bhat 2013-06-25 20:31 ` [PATCH v2 33/45] cris/smp: " Srivatsa S. Bhat 2013-06-25 20:31 ` Srivatsa S. Bhat 2013-06-25 20:32 ` [PATCH v2 34/45] hexagon/smp: " Srivatsa S. Bhat 2013-06-25 20:32 ` Srivatsa S. Bhat 2013-06-25 20:32 ` [PATCH v2 35/45] ia64: irq, perfmon: " Srivatsa S. Bhat 2013-06-25 20:32 ` Srivatsa S. Bhat 2013-06-25 20:32 ` [PATCH v2 36/45] ia64: smp, tlb: " Srivatsa S. Bhat 2013-06-25 20:32 ` Srivatsa S. Bhat 2013-06-25 20:32 ` [PATCH v2 37/45] m32r: " Srivatsa S. Bhat 2013-06-25 20:32 ` Srivatsa S. Bhat 2013-06-25 20:32 ` [PATCH v2 38/45] MIPS: " Srivatsa S. Bhat 2013-06-25 20:32 ` Srivatsa S. Bhat 2013-06-26 13:39 ` Ralf Baechle 2013-06-26 13:39 ` Ralf Baechle 2013-06-27 7:08 ` Srivatsa S. Bhat 2013-06-25 20:33 ` [PATCH v2 39/45] mn10300: " Srivatsa S. Bhat 2013-06-25 20:33 ` [PATCH v2 40/45] powerpc, irq: Use GFP_ATOMIC allocations in atomic context Srivatsa S. Bhat 2013-06-25 20:33 ` Srivatsa S. Bhat 2013-06-25 20:33 ` [PATCH v2 41/45] powerpc: Use get/put_online_cpus_atomic() to prevent CPU offline Srivatsa S. Bhat 2013-06-25 20:33 ` Srivatsa S. Bhat 2013-06-25 20:33 ` [PATCH v2 42/45] powerpc: Use get/put_online_cpus_atomic() to avoid false-positive warning Srivatsa S. Bhat 2013-06-25 20:33 ` Srivatsa S. Bhat 2013-06-25 20:33 ` [PATCH v2 43/45] sh: Use get/put_online_cpus_atomic() to prevent CPU offline Srivatsa S. Bhat 2013-06-25 20:33 ` Srivatsa S. Bhat 2013-06-25 20:33 ` [PATCH v2 44/45] sparc: " Srivatsa S. Bhat 2013-06-25 20:33 ` Srivatsa S. Bhat 2013-06-25 20:34 ` [PATCH v2 45/45] tile: " Srivatsa S. Bhat 2013-06-25 20:34 ` Srivatsa S. Bhat
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=20130625202627.16593.77574.stgit@srivatsabhat.in.ibm.com \ --to=srivatsa.bhat@linux.vnet.ibm.com \ --cc=akpm@linux-foundation.org \ --cc=alex.shi@intel.com \ --cc=fweisbec@gmail.com \ --cc=isimatu.yasuaki@jp.fujitsu.com \ --cc=kosaki.motohiro@jp.fujitsu.com \ --cc=laijs@cn.fujitsu.com \ --cc=linux-arch@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-pm@vger.kernel.org \ --cc=linuxppc-dev@lists.ozlabs.org \ --cc=mingo@kernel.org \ --cc=namhyung@kernel.org \ --cc=netdev@vger.kernel.org \ --cc=nikunj@linux.vnet.ibm.com \ --cc=oleg@redhat.com \ --cc=paulmck@linux.vnet.ibm.com \ --cc=peterz@infradead.org \ --cc=rafael.j.wysocki@intel.com \ --cc=rostedt@goodmis.org \ --cc=rusty@rustcorp.com.au \ --cc=sbw@mit.edu \ --cc=tglx@linutronix.de \ --cc=tj@kernel.org \ --cc=vincent.guittot@linaro.org \ --cc=walken@google.com \ --cc=wangyun@linux.vnet.ibm.com \ --cc=xiaoguangrong@linux.vnet.ibm.com \ --cc=zhong@linux.vnet.ibm.com \ /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: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).