* [PATCH] Calling check_system_tsc_reliable before unsynchronized_tsc
@ 2017-06-08 11:43 Zhenzhong Duan
2017-06-12 16:03 ` Thomas Gleixner
0 siblings, 1 reply; 4+ messages in thread
From: Zhenzhong Duan @ 2017-06-08 11:43 UTC (permalink / raw)
To: tglx, mingo, hpa; +Cc: x86, LKML
unsynchronized_tsc() checks value of tsc_clocksource_reliable which is set by
check_system_tsc_reliable(). It's better to move check_system_tsc_reliable() at
front, or else this check makes no sense.
Though X86_FEATURE_CONSTANT_TSC is usually set for TSC reliable system, just in
case.
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@oracle.com>
---
arch/x86/kernel/tsc.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
index 714dfba..a316bdd 100644
--- a/arch/x86/kernel/tsc.c
+++ b/arch/x86/kernel/tsc.c
@@ -1412,11 +1412,11 @@ void __init tsc_init(void)
use_tsc_delay();
+ check_system_tsc_reliable();
+
if (unsynchronized_tsc())
mark_tsc_unstable("TSCs unsynchronized");
- check_system_tsc_reliable();
-
detect_art();
}
--
1.7.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Calling check_system_tsc_reliable before unsynchronized_tsc
2017-06-08 11:43 [PATCH] Calling check_system_tsc_reliable before unsynchronized_tsc Zhenzhong Duan
@ 2017-06-12 16:03 ` Thomas Gleixner
2017-06-13 2:47 ` Zhenzhong Duan
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Gleixner @ 2017-06-12 16:03 UTC (permalink / raw)
To: Zhenzhong Duan; +Cc: mingo, hpa, x86, LKML
On Thu, 8 Jun 2017, Zhenzhong Duan wrote:
> unsynchronized_tsc() checks value of tsc_clocksource_reliable which is set by
> check_system_tsc_reliable(). It's better to move check_system_tsc_reliable()
> at
> front, or else this check makes no sense.
>
> Though X86_FEATURE_CONSTANT_TSC is usually set for TSC reliable system, just
> in
> case.
>
> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@oracle.com>
> ---
> arch/x86/kernel/tsc.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
> index 714dfba..a316bdd 100644
> --- a/arch/x86/kernel/tsc.c
> +++ b/arch/x86/kernel/tsc.c
> @@ -1412,11 +1412,11 @@ void __init tsc_init(void)
> use_tsc_delay();
> + check_system_tsc_reliable();
> +
> if (unsynchronized_tsc())
> mark_tsc_unstable("TSCs unsynchronized");
> - check_system_tsc_reliable();
> -
What kind of patch is that? Definitely nothing which can be applied.
Thanks,
tglx
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Calling check_system_tsc_reliable before unsynchronized_tsc
2017-06-12 16:03 ` Thomas Gleixner
@ 2017-06-13 2:47 ` Zhenzhong Duan
2017-06-20 13:14 ` Thomas Gleixner
0 siblings, 1 reply; 4+ messages in thread
From: Zhenzhong Duan @ 2017-06-13 2:47 UTC (permalink / raw)
To: Thomas Gleixner; +Cc: mingo, hpa, x86, LKML
在 2017/6/13 0:03, Thomas Gleixner 写道:
> On Thu, 8 Jun 2017, Zhenzhong Duan wrote:
>
>> unsynchronized_tsc() checks value of tsc_clocksource_reliable which is set by
>> check_system_tsc_reliable(). It's better to move check_system_tsc_reliable()
>> at
>> front, or else this check makes no sense.
>>
>> Though X86_FEATURE_CONSTANT_TSC is usually set for TSC reliable system, just
>> in
>> case.
>>
>> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@oracle.com>
>> ---
>> arch/x86/kernel/tsc.c | 4 ++--
>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
>> index 714dfba..a316bdd 100644
>> --- a/arch/x86/kernel/tsc.c
>> +++ b/arch/x86/kernel/tsc.c
>> @@ -1412,11 +1412,11 @@ void __init tsc_init(void)
>> use_tsc_delay();
>> + check_system_tsc_reliable();
>> +
>> if (unsynchronized_tsc())
>> mark_tsc_unstable("TSCs unsynchronized");
>> - check_system_tsc_reliable();
>> -
> What kind of patch is that? Definitely nothing which can be applied.
To avoid using unassigned variable tsc_clocksource_reliable.
Or what's the purpose of if (tsc_clocksource_reliable) check in
unsynchronized_tsc()?
--
thanks
zduan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Calling check_system_tsc_reliable before unsynchronized_tsc
2017-06-13 2:47 ` Zhenzhong Duan
@ 2017-06-20 13:14 ` Thomas Gleixner
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Gleixner @ 2017-06-20 13:14 UTC (permalink / raw)
To: Zhenzhong Duan; +Cc: mingo, hpa, x86, LKML
[-- Attachment #1: Type: text/plain, Size: 1740 bytes --]
On Tue, 13 Jun 2017, Zhenzhong Duan wrote:
> 在 2017/6/13 0:03, Thomas Gleixner 写道:
> > On Thu, 8 Jun 2017, Zhenzhong Duan wrote:
> >
> > > unsynchronized_tsc() checks value of tsc_clocksource_reliable which is set
> > > by
> > > check_system_tsc_reliable(). It's better to move
> > > check_system_tsc_reliable()
> > > at
> > > front, or else this check makes no sense.
> > >
> > > Though X86_FEATURE_CONSTANT_TSC is usually set for TSC reliable system,
> > > just
> > > in
> > > case.
> > >
> > > Signed-off-by: Zhenzhong Duan <zhenzhong.duan@oracle.com>
> > > ---
> > > arch/x86/kernel/tsc.c | 4 ++--
> > > 1 files changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
> > > index 714dfba..a316bdd 100644
> > > --- a/arch/x86/kernel/tsc.c
> > > +++ b/arch/x86/kernel/tsc.c
> > > @@ -1412,11 +1412,11 @@ void __init tsc_init(void)
> > > use_tsc_delay();
> > > + check_system_tsc_reliable();
> > > +
> > > if (unsynchronized_tsc())
> > > mark_tsc_unstable("TSCs unsynchronized");
> > > - check_system_tsc_reliable();
> > > -
> > What kind of patch is that? Definitely nothing which can be applied.
> To avoid using unassigned variable tsc_clocksource_reliable.
> Or what's the purpose of if (tsc_clocksource_reliable) check in
> unsynchronized_tsc()?
That's not the question. The patch format itself is broken:
@@ -1412,11 +1412,11 @@ void __init tsc_init(void)
use_tsc_delay();
+ check_system_tsc_reliable();
+
if (unsynchronized_tsc())
mark_tsc_unstable("TSCs unsynchronized");
- check_system_tsc_reliable();
-
That is not a patch created with diff -u or any other mechanism
which creates properly formatted patches.
Thanks,
tglx
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-06-20 13:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-08 11:43 [PATCH] Calling check_system_tsc_reliable before unsynchronized_tsc Zhenzhong Duan
2017-06-12 16:03 ` Thomas Gleixner
2017-06-13 2:47 ` Zhenzhong Duan
2017-06-20 13:14 ` Thomas Gleixner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®