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 10:27:08 +0100 (CET)	[thread overview]
Message-ID: <alpine.DEB.2.21.1802281025390.1886@nanos.tec.linutronix.de> (raw)
In-Reply-To: <207b6722-a506-1e6a-c81c-a530e772dfa6@nbd.name>

On Wed, 28 Feb 2018, Felix Fietkau wrote:
> On 2018-02-28 09:56, Thomas Gleixner wrote:
> > 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?
> >>  	count_width = read_gic_config() & GIC_CONFIG_COUNTBITS;
> >> -	count_width >>= __fls(GIC_CONFIG_COUNTBITS);
> >> +	count_width >>= __ffs(GIC_CONFIG_COUNTBITS);
> This code is trying to extract the GIC_CONFIG_COUNTBITS field from
> read_gic_config(), so it needs to shift count_width right by the index
> of the least significant bit (__ffs) instead of the most significant bit
> (__fls) of the field mask.

Sure, but that information wants to be in the changelog.

Thanks,

	tglx

      reply	other threads:[~2018-02-28  9:26 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
2018-02-28  9:19   ` Felix Fietkau
2018-02-28  9:27     ` Thomas Gleixner [this message]

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.1802281025390.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.