Re: [PATCH 1/5] smp: Introduce a generic on_each_cpu_mask function

From: Peter Zijlstra
Date: Mon Sep 26 2011 - 04:48:40 EST


On Sun, 2011-09-25 at 11:54 +0300, Gilad Ben-Yossef wrote:
> +#define on_each_cpu_mask(mask, func, info, wait) \
> + if (cpumask_test_cpu(0, (mask))) { \
> + local_irq_disable(); \
> + func(info); \
> + local_irq_enable(); \
> + }

Typically we wrap that in an extra do { } while(0) loop to properly
consume the trailing ;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/