Re: [PATCH] fix hrtimer percpu usage typo

From: Thomas Gleixner
Date: Tue Aug 08 2006 - 16:32:48 EST


On Mon, 2006-08-07 at 15:07 +0200, Jan Blunck wrote:

Can you please inline patches ?

Acked-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>


> From: Jan Blunck <jblunck@xxxxxxx>
> Subject: fix hrtimer percpu usage
>
> The percpu variable is used incorrectly in switch_hrtimer_base().
>
> Signed-off-by: Jan Blunck <jblunck@xxxxxxx>
> ---
> kernel/hrtimer.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> Index: linux-2.6/kernel/hrtimer.c
> ===================================================================
> --- linux-2.6.orig/kernel/hrtimer.c
> +++ linux-2.6/kernel/hrtimer.c
> @@ -187,7 +187,7 @@ switch_hrtimer_base(struct hrtimer *time
> {
> struct hrtimer_base *new_base;
>
> - new_base = &__get_cpu_var(hrtimer_bases[base->index]);
> + new_base = &__get_cpu_var(hrtimer_bases)[base->index];
>
> if (base != new_base) {
> /*
>

-
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/