* [dpdk-dev] [PATCH] eal: fix set_tsc_freq
@ 2015-07-27 12:17 Sergio Gonzalez Monroy
2015-07-27 12:41 ` Thomas Monjalon
2015-07-27 12:42 ` Mcnamara, John
0 siblings, 2 replies; 3+ messages in thread
From: Sergio Gonzalez Monroy @ 2015-07-27 12:17 UTC (permalink / raw)
To: dev
Fix error where TSC freq is 0.
The logical OR operator evaluates to 1 if any of its operands is
different than 0.
Error showed later while initializing PMD:
EAL: TSC frequency is ~0 KHz
<snip>
PMD: eth_ixgbe_dev_init(): Hardware Initialization Failure: -30
EAL: Error - exiting with code: 1
Cause: Requested device 0000:84:00.0 cannot be used
Fixes: 040cf8a41187 ("eal: deduplicate timer functions")
Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
---
lib/librte_eal/common/eal_common_timer.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/lib/librte_eal/common/eal_common_timer.c b/lib/librte_eal/common/eal_common_timer.c
index 2956703..255f995 100644
--- a/lib/librte_eal/common/eal_common_timer.c
+++ b/lib/librte_eal/common/eal_common_timer.c
@@ -77,7 +77,11 @@ estimate_tsc_freq(void)
void
set_tsc_freq(void)
{
- uint64_t freq = get_tsc_freq() || estimate_tsc_freq();
+ uint64_t freq = get_tsc_freq();
+
+ if (!freq)
+ freq = estimate_tsc_freq();
+
RTE_LOG(INFO, EAL, "TSC frequency is ~%" PRIu64 " KHz\n", freq / 1000);
eal_tsc_resolution_hz = freq;
}
--
1.9.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] eal: fix set_tsc_freq
2015-07-27 12:17 [dpdk-dev] [PATCH] eal: fix set_tsc_freq Sergio Gonzalez Monroy
@ 2015-07-27 12:41 ` Thomas Monjalon
2015-07-27 12:42 ` Mcnamara, John
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2015-07-27 12:41 UTC (permalink / raw)
To: Sergio Gonzalez Monroy; +Cc: dev
2015-07-27 13:17, Sergio Gonzalez Monroy:
> Fix error where TSC freq is 0.
>
> The logical OR operator evaluates to 1 if any of its operands is
> different than 0.
>
> Error showed later while initializing PMD:
> EAL: TSC frequency is ~0 KHz
> <snip>
> PMD: eth_ixgbe_dev_init(): Hardware Initialization Failure: -30
> EAL: Error - exiting with code: 1
> Cause: Requested device 0000:84:00.0 cannot be used
>
> Fixes: 040cf8a41187 ("eal: deduplicate timer functions")
>
> Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
Applied, thanks for the quick test and fix, and sorry for the trivial error.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] eal: fix set_tsc_freq
2015-07-27 12:17 [dpdk-dev] [PATCH] eal: fix set_tsc_freq Sergio Gonzalez Monroy
2015-07-27 12:41 ` Thomas Monjalon
@ 2015-07-27 12:42 ` Mcnamara, John
1 sibling, 0 replies; 3+ messages in thread
From: Mcnamara, John @ 2015-07-27 12:42 UTC (permalink / raw)
To: Gonzalez Monroy, Sergio, dev
> -----Original Message-----
> From: Gonzalez Monroy, Sergio
> Sent: Monday, July 27, 2015 1:07 PM
> To: Mcnamara, John
> Subject: [PATCH] eal: fix set_tsc_freq
>
> The logical OR operator evaluates to 1 if any of its operands is different
> than 0.
>
> Fixes: 040cf8a41187 ("eal: deduplicate timer functions")
>
> Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-07-27 12:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-27 12:17 [dpdk-dev] [PATCH] eal: fix set_tsc_freq Sergio Gonzalez Monroy
2015-07-27 12:41 ` Thomas Monjalon
2015-07-27 12:42 ` Mcnamara, John
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).