From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Sailer Subject: Re: [PATCH v3 08/18] baycom_epp: Replace rdtscl() with native_read_tsc() Date: Wed, 17 Jun 2015 02:49:29 +0200 Message-ID: <5580C419.8090402@alumni.ethz.ch> References: <1195ce0c7f34169ff3006341b77806184a46b9bf.1434501121.git.luto@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: Borislav Petkov , Peter Zijlstra , John Stultz , linux-kernel@vger.kernel.org, Len Brown , Huang Rui , Denys Vlasenko , kvm@vger.kernel.org, Ralf Baechle , walter harms , linux-hams@vger.kernel.org To: Andy Lutomirski , x86@kernel.org Return-path: In-Reply-To: <1195ce0c7f34169ff3006341b77806184a46b9bf.1434501121.git.luto@kernel.org> Sender: linux-hams-owner@vger.kernel.org List-Id: kvm.vger.kernel.org Acked-by: Thomas Sailer On 06/17/2015 02:35 AM, Andy Lutomirski wrote: > This is only used if BAYCOM_DEBUG is defined. > > Cc: walter harms > Cc: Ralf Baechle > Cc: Thomas Sailer > Cc: linux-hams@vger.kernel.org > Signed-off-by: Andy Lutomirski > --- > > I'm hoping for an ack for this to go through -tip. > > drivers/net/hamradio/baycom_epp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/net/hamradio/baycom_epp.c b/drivers/net/hamradio/baycom_epp.c > index 83c7cce0d172..44e5c3b5e0af 100644 > --- a/drivers/net/hamradio/baycom_epp.c > +++ b/drivers/net/hamradio/baycom_epp.c > @@ -638,7 +638,7 @@ static int receive(struct net_device *dev, int cnt) > #define GETTICK(x) \ > ({ \ > if (cpu_has_tsc) \ > - rdtscl(x); \ > + x = (unsigned int)native_read_tsc(); \ > }) > #else /* __i386__ */ > #define GETTICK(x)