From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Dmitry Vyal <dmitryvyal@gmail.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] Sporadic errors while initializing NICs in example applications, dpdk-1.5.0r1
Date: Fri, 29 Nov 2013 13:39:44 +0100 [thread overview]
Message-ID: <1535896.tMWsNx1bj7@x220> (raw)
In-Reply-To: <3439195.NJQbpGS54N@x220>
29/11/2013 13:25, Thomas Monjalon :
> 29/11/2013 14:53, Dmitry Vyal :
> > On 11/28/2013 03:01 PM, Richardson, Bruce wrote:
> > > [BR] Frequency changes should not affect timers for modern Intel CPUs.
> > > Please see the " Intel(r) 64 and IA-32 Architectures Software
> > > Developer's
> > > Manual" Volume 3
> > > (http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-> > > i
> > > a-32-architectures-software-developer-system-programming-manual-325384.p
> > > df
> > > ) , Section 17.13 for more details on this.
> >
> > Hmm, that's strange. I don't know how to interpret my observations then.
> > I have access to two platforms, one is based on Intel(R) Xeon(R) CPU
> > E3-1230 V2 @ 3.30GHz and another on Intel(R) Xeon(R) CPU E3-1270 v3 @
> > 3.50GHz. Both running ubuntu-12.04 server. I see repeating errors on NIC
> > initialisation phase. The error frequency greatly reduces if I patch
> > loop limit as I described earlier or if I call rte_power_init and
> > rte_power_freq_max as Thomas suggested.
> >
> > But the only way to get rid of them completely is to set performance
> > governor.
>
> Please check that your hardware do not support invariant TSC.
> It would explain why you need to fix frequency.
>
> I attach a simple code to test CPU feature "Invariant TSC".
It seems that the file is stripped on the mailing-list.
Code inlined:
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <stdint.h>
int main()
{
uint32_t a = 0x80000000;
uint32_t b, d;
__asm__("cpuid;"
:"=a"(b)
:"0"(a));
if (b >= 0x80000007) {
a = 0x80000007;
__asm__("cpuid;"
:"=a"(b), "=d"(d)
:"0"(a));
if (d & (1<<8)) {
printf("Invariant TSC is supported\n");
} else{
printf("Invariant TSC is NOT supported\n");
}
} else {
printf("No support for Advanced Power Management Information in
CPUID\n");
}
return 0;
}
next prev parent reply other threads:[~2013-11-29 12:37 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-22 12:29 Dmitry Vyal
2013-11-22 12:48 ` Thomas Monjalon
2013-11-27 14:06 ` Dmitry Vyal
2013-11-27 14:10 ` jigsaw
2013-11-27 14:42 ` Thomas Monjalon
2013-11-28 11:01 ` Richardson, Bruce
2013-11-29 10:53 ` Dmitry Vyal
2013-11-29 12:25 ` Thomas Monjalon
2013-11-29 12:39 ` Thomas Monjalon [this message]
2013-12-06 12:43 ` Dmitry Vyal
2013-11-29 18:20 ` Thomas Monjalon
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=1535896.tMWsNx1bj7@x220 \
--to=thomas.monjalon@6wind.com \
--cc=dev@dpdk.org \
--cc=dmitryvyal@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).