All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: Felix Fietkau <nbd@nbd.name>
Cc: linux-kernel@vger.kernel.org, daniel.lezcano@linaro.org,
	paul.burton@imgtec.com
Subject: Re: [PATCH] clocksource: mips-gic-timer: fix clocksource counter width
Date: Wed, 28 Feb 2018 09:56:02 +0100 (CET)	[thread overview]
Message-ID: <alpine.DEB.2.21.1802280955430.1886@nanos.tec.linutronix.de> (raw)
In-Reply-To: <20180221124749.39471-1-nbd@nbd.name>

On Wed, 21 Feb 2018, Felix Fietkau wrote:

> This code needs to use ffs instead of fls on the mask to determine the
> shift for reading the GIC_CONFIG_COUNTBITS field.

Why?

Thanks,

	tglx
 
> Fixes: e07127a077c7 ("clocksource: mips-gic-timer: Use new GIC accessor functions")
> Cc: Paul Burton <paul.burton@imgtec.com>
> Cc: stable@vger.kernel.org
> Signed-off-by: Felix Fietkau <nbd@nbd.name>
> ---
>  drivers/clocksource/mips-gic-timer.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clocksource/mips-gic-timer.c b/drivers/clocksource/mips-gic-timer.c
> index a04808a21d4e..bf0eee78c6ef 100644
> --- a/drivers/clocksource/mips-gic-timer.c
> +++ b/drivers/clocksource/mips-gic-timer.c
> @@ -166,7 +166,7 @@ static int __init __gic_clocksource_init(void)
>  
>  	/* Set clocksource mask. */
>  	count_width = read_gic_config() & GIC_CONFIG_COUNTBITS;
> -	count_width >>= __fls(GIC_CONFIG_COUNTBITS);
> +	count_width >>= __ffs(GIC_CONFIG_COUNTBITS);
>  	count_width *= 4;
>  	count_width += 32;
>  	gic_clocksource.mask = CLOCKSOURCE_MASK(count_width);
> -- 
> 2.14.2
> 
> 

  reply	other threads:[~2018-02-28  8:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-21 12:47 [PATCH] clocksource: mips-gic-timer: fix clocksource counter width Felix Fietkau
2018-02-28  8:56 ` Thomas Gleixner [this message]
2018-02-28  9:19   ` Felix Fietkau
2018-02-28  9:27     ` Thomas Gleixner

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=alpine.DEB.2.21.1802280955430.1886@nanos.tec.linutronix.de \
    --to=tglx@linutronix.de \
    --cc=daniel.lezcano@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nbd@nbd.name \
    --cc=paul.burton@imgtec.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: 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.