2011-06-09 06:02:06

by Justin P. Mattock

[permalink] [raw]
Subject: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

From: "Justin P. Mattock" <[email protected]>

sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
"UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!

before:
[ 0.114915] Time: 1:47:03 Date: 06/09/11

after:
[ 0.114728] Time: 5:46:02 UTC Date: 06/09/11

Signed-off-by: Justin P. Mattock <[email protected]>

---
drivers/base/power/trace.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/base/power/trace.c b/drivers/base/power/trace.c
index c80e138..009f459 100644
--- a/drivers/base/power/trace.c
+++ b/drivers/base/power/trace.c
@@ -112,7 +112,7 @@ static unsigned int read_magic_time(void)
unsigned int val;

get_rtc_time(&time);
- pr_info("Time: %2d:%02d:%02d Date: %02d/%02d/%02d\n",
+ pr_info("Time: %2d:%02d:%02d UTC Date: %02d/%02d/%02d\n",
time.tm_hour, time.tm_min, time.tm_sec,
time.tm_mon + 1, time.tm_mday, time.tm_year % 100);
val = time.tm_year; /* 100 years */
--
1.7.5.2


2011-06-12 12:11:39

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

Hi,

On Thursday, June 09, 2011, Justin P. Mattock wrote:
> From: "Justin P. Mattock" <[email protected]>
>
> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
>
> before:
> [ 0.114915] Time: 1:47:03 Date: 06/09/11
>
> after:
> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
>
> Signed-off-by: Justin P. Mattock <[email protected]>

I suspect the goal is to mark messages printed by the PM trace code so that
they can be easily distinguished from messages from other sources to avoid
confusion. Why do you think it's a good idea to use the "UTC" string for
this purpose? The time printed in those messages need not be UTC.

It would be better to simply print "RTC time: ..., date: ..." IMO.

Thanks,
Rafael


> ---
> drivers/base/power/trace.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/base/power/trace.c b/drivers/base/power/trace.c
> index c80e138..009f459 100644
> --- a/drivers/base/power/trace.c
> +++ b/drivers/base/power/trace.c
> @@ -112,7 +112,7 @@ static unsigned int read_magic_time(void)
> unsigned int val;
>
> get_rtc_time(&time);
> - pr_info("Time: %2d:%02d:%02d Date: %02d/%02d/%02d\n",
> + pr_info("Time: %2d:%02d:%02d UTC Date: %02d/%02d/%02d\n",
> time.tm_hour, time.tm_min, time.tm_sec,
> time.tm_mon + 1, time.tm_mday, time.tm_year % 100);
> val = time.tm_year; /* 100 years */
>

2011-06-12 15:53:03

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

On 06/12/2011 05:12 AM, Rafael J. Wysocki wrote:
> Hi,
>
> On Thursday, June 09, 2011, Justin P. Mattock wrote:
>> From: "Justin P. Mattock"<[email protected]>
>>
>> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
>> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
>> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
>>
>> before:
>> [ 0.114915] Time: 1:47:03 Date: 06/09/11
>>
>> after:
>> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
>>
>> Signed-off-by: Justin P. Mattock<[email protected]>
>
> I suspect the goal is to mark messages printed by the PM trace code so that
> they can be easily distinguished from messages from other sources to avoid
> confusion. Why do you think it's a good idea to use the "UTC" string for
> this purpose? The time printed in those messages need not be UTC.
>
> It would be better to simply print "RTC time: ..., date: ..." IMO.
>
> Thanks,
> Rafael
>

well.. if thats better, then thats better.. over here(people that dont
know what RTC time is) would not get so confused with a simple UTC or
PDT or whatever the time zone is but if RTC is bettr, then its better.

>
>> ---
>> drivers/base/power/trace.c | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/base/power/trace.c b/drivers/base/power/trace.c
>> index c80e138..009f459 100644
>> --- a/drivers/base/power/trace.c
>> +++ b/drivers/base/power/trace.c
>> @@ -112,7 +112,7 @@ static unsigned int read_magic_time(void)
>> unsigned int val;
>>
>> get_rtc_time(&time);
>> - pr_info("Time: %2d:%02d:%02d Date: %02d/%02d/%02d\n",
>> + pr_info("Time: %2d:%02d:%02d UTC Date: %02d/%02d/%02d\n",
>> time.tm_hour, time.tm_min, time.tm_sec,
>> time.tm_mon + 1, time.tm_mday, time.tm_year % 100);
>> val = time.tm_year; /* 100 years */
>>
>
>

2011-06-12 18:34:55

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

On Sunday, June 12, 2011, Justin P. Mattock wrote:
> On 06/12/2011 05:12 AM, Rafael J. Wysocki wrote:
> > Hi,
> >
> > On Thursday, June 09, 2011, Justin P. Mattock wrote:
> >> From: "Justin P. Mattock"<[email protected]>
> >>
> >> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
> >> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
> >> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
> >>
> >> before:
> >> [ 0.114915] Time: 1:47:03 Date: 06/09/11
> >>
> >> after:
> >> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
> >>
> >> Signed-off-by: Justin P. Mattock<[email protected]>
> >
> > I suspect the goal is to mark messages printed by the PM trace code so that
> > they can be easily distinguished from messages from other sources to avoid
> > confusion. Why do you think it's a good idea to use the "UTC" string for
> > this purpose? The time printed in those messages need not be UTC.
> >
> > It would be better to simply print "RTC time: ..., date: ..." IMO.
> >
> > Thanks,
> > Rafael
> >
>
> well.. if thats better, then thats better.. over here(people that dont
> know what RTC time is) would not get so confused with a simple UTC or
> PDT or whatever the time zone is but if RTC is bettr, then its better.

My point is we don't know this time is always UTC, so we rather shouldn't
label it as UTC unconditionally, should we?

Rafael

2011-06-12 19:35:13

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

On 06/12/2011 11:35 AM, Rafael J. Wysocki wrote:
> On Sunday, June 12, 2011, Justin P. Mattock wrote:
>> On 06/12/2011 05:12 AM, Rafael J. Wysocki wrote:
>>> Hi,
>>>
>>> On Thursday, June 09, 2011, Justin P. Mattock wrote:
>>>> From: "Justin P. Mattock"<[email protected]>
>>>>
>>>> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
>>>> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
>>>> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
>>>>
>>>> before:
>>>> [ 0.114915] Time: 1:47:03 Date: 06/09/11
>>>>
>>>> after:
>>>> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
>>>>
>>>> Signed-off-by: Justin P. Mattock<[email protected]>
>>>
>>> I suspect the goal is to mark messages printed by the PM trace code so that
>>> they can be easily distinguished from messages from other sources to avoid
>>> confusion. Why do you think it's a good idea to use the "UTC" string for
>>> this purpose? The time printed in those messages need not be UTC.
>>>
>>> It would be better to simply print "RTC time: ..., date: ..." IMO.
>>>
>>> Thanks,
>>> Rafael
>>>
>>
>> well.. if thats better, then thats better.. over here(people that dont
>> know what RTC time is) would not get so confused with a simple UTC or
>> PDT or whatever the time zone is but if RTC is bettr, then its better.
>
> My point is we don't know this time is always UTC, so we rather shouldn't
> label it as UTC unconditionally, should we?
>
> Rafael
>

sounds good to me!!

2011-06-12 20:27:05

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

On Sunday, June 12, 2011, Justin P. Mattock wrote:
> On 06/12/2011 11:35 AM, Rafael J. Wysocki wrote:
> > On Sunday, June 12, 2011, Justin P. Mattock wrote:
> >> On 06/12/2011 05:12 AM, Rafael J. Wysocki wrote:
> >>> Hi,
> >>>
> >>> On Thursday, June 09, 2011, Justin P. Mattock wrote:
> >>>> From: "Justin P. Mattock"<[email protected]>
> >>>>
> >>>> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
> >>>> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
> >>>> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
> >>>>
> >>>> before:
> >>>> [ 0.114915] Time: 1:47:03 Date: 06/09/11
> >>>>
> >>>> after:
> >>>> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
> >>>>
> >>>> Signed-off-by: Justin P. Mattock<[email protected]>
> >>>
> >>> I suspect the goal is to mark messages printed by the PM trace code so that
> >>> they can be easily distinguished from messages from other sources to avoid
> >>> confusion. Why do you think it's a good idea to use the "UTC" string for
> >>> this purpose? The time printed in those messages need not be UTC.
> >>>
> >>> It would be better to simply print "RTC time: ..., date: ..." IMO.
> >>>
> >>> Thanks,
> >>> Rafael
> >>>
> >>
> >> well.. if thats better, then thats better.. over here(people that dont
> >> know what RTC time is) would not get so confused with a simple UTC or
> >> PDT or whatever the time zone is but if RTC is bettr, then its better.
> >
> > My point is we don't know this time is always UTC, so we rather shouldn't
> > label it as UTC unconditionally, should we?
> >
> > Rafael
> >
>
> sounds good to me!!

I'm not sure what you mean?

2011-06-12 22:29:50

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

On 06/12/2011 01:27 PM, Rafael J. Wysocki wrote:
> On Sunday, June 12, 2011, Justin P. Mattock wrote:
>> On 06/12/2011 11:35 AM, Rafael J. Wysocki wrote:
>>> On Sunday, June 12, 2011, Justin P. Mattock wrote:
>>>> On 06/12/2011 05:12 AM, Rafael J. Wysocki wrote:
>>>>> Hi,
>>>>>
>>>>> On Thursday, June 09, 2011, Justin P. Mattock wrote:
>>>>>> From: "Justin P. Mattock"<[email protected]>
>>>>>>
>>>>>> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
>>>>>> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
>>>>>> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
>>>>>>
>>>>>> before:
>>>>>> [ 0.114915] Time: 1:47:03 Date: 06/09/11
>>>>>>
>>>>>> after:
>>>>>> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
>>>>>>
>>>>>> Signed-off-by: Justin P. Mattock<[email protected]>
>>>>>
>>>>> I suspect the goal is to mark messages printed by the PM trace code so that
>>>>> they can be easily distinguished from messages from other sources to avoid
>>>>> confusion. Why do you think it's a good idea to use the "UTC" string for
>>>>> this purpose? The time printed in those messages need not be UTC.
>>>>>
>>>>> It would be better to simply print "RTC time: ..., date: ..." IMO.
>>>>>
>>>>> Thanks,
>>>>> Rafael
>>>>>
>>>>
>>>> well.. if thats better, then thats better.. over here(people that dont
>>>> know what RTC time is) would not get so confused with a simple UTC or
>>>> PDT or whatever the time zone is but if RTC is bettr, then its better.
>>>
>>> My point is we don't know this time is always UTC, so we rather shouldn't
>>> label it as UTC unconditionally, should we?
>>>
>>> Rafael
>>>
>>
>> sounds good to me!!
>
> I'm not sure what you mean?
>

with what you are saying "RTC" if anything.. rather than "UTC"

2011-06-13 21:46:27

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

On Monday, June 13, 2011, Justin P. Mattock wrote:
> On 06/12/2011 01:27 PM, Rafael J. Wysocki wrote:
> > On Sunday, June 12, 2011, Justin P. Mattock wrote:
> >> On 06/12/2011 11:35 AM, Rafael J. Wysocki wrote:
> >>> On Sunday, June 12, 2011, Justin P. Mattock wrote:
> >>>> On 06/12/2011 05:12 AM, Rafael J. Wysocki wrote:
> >>>>> Hi,
> >>>>>
> >>>>> On Thursday, June 09, 2011, Justin P. Mattock wrote:
> >>>>>> From: "Justin P. Mattock"<[email protected]>
> >>>>>>
> >>>>>> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
> >>>>>> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
> >>>>>> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
> >>>>>>
> >>>>>> before:
> >>>>>> [ 0.114915] Time: 1:47:03 Date: 06/09/11
> >>>>>>
> >>>>>> after:
> >>>>>> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
> >>>>>>
> >>>>>> Signed-off-by: Justin P. Mattock<[email protected]>
> >>>>>
> >>>>> I suspect the goal is to mark messages printed by the PM trace code so that
> >>>>> they can be easily distinguished from messages from other sources to avoid
> >>>>> confusion. Why do you think it's a good idea to use the "UTC" string for
> >>>>> this purpose? The time printed in those messages need not be UTC.
> >>>>>
> >>>>> It would be better to simply print "RTC time: ..., date: ..." IMO.
> >>>>>
> >>>>> Thanks,
> >>>>> Rafael
> >>>>>
> >>>>
> >>>> well.. if thats better, then thats better.. over here(people that dont
> >>>> know what RTC time is) would not get so confused with a simple UTC or
> >>>> PDT or whatever the time zone is but if RTC is bettr, then its better.
> >>>
> >>> My point is we don't know this time is always UTC, so we rather shouldn't
> >>> label it as UTC unconditionally, should we?
> >>>
> >>> Rafael
> >>>
> >>
> >> sounds good to me!!
> >
> > I'm not sure what you mean?
> >
>
> with what you are saying "RTC" if anything.. rather than "UTC"

So, it looks like you'd like the appended patch to be appiled?

Rafael

---
From: Rafael J. Wysocki <[email protected]>
Subject: PM: Add "RTC" to PM trace time stamps to avoid confusion

Some users are apparently confused by dmesg output from
read_magic_time(), which looks like "real" time and date.
Add the "RTC" string to time stamps printed by read_magic_time() to
avoid that confusion.

Reported-by: Justin P. Mattock <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
---
drivers/base/power/trace.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6/drivers/base/power/trace.c
===================================================================
--- linux-2.6.orig/drivers/base/power/trace.c
+++ linux-2.6/drivers/base/power/trace.c
@@ -112,7 +112,7 @@ static unsigned int read_magic_time(void
unsigned int val;

get_rtc_time(&time);
- pr_info("Time: %2d:%02d:%02d Date: %02d/%02d/%02d\n",
+ pr_info("RTC time: %2d:%02d:%02d, date: %02d/%02d/%02d\n",
time.tm_hour, time.tm_min, time.tm_sec,
time.tm_mon + 1, time.tm_mday, time.tm_year % 100);
val = time.tm_year; /* 100 years */

2011-06-13 22:20:06

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

On 06/13/2011 02:47 PM, Rafael J. Wysocki wrote:
> On Monday, June 13, 2011, Justin P. Mattock wrote:
>> On 06/12/2011 01:27 PM, Rafael J. Wysocki wrote:
>>> On Sunday, June 12, 2011, Justin P. Mattock wrote:
>>>> On 06/12/2011 11:35 AM, Rafael J. Wysocki wrote:
>>>>> On Sunday, June 12, 2011, Justin P. Mattock wrote:
>>>>>> On 06/12/2011 05:12 AM, Rafael J. Wysocki wrote:
>>>>>>> Hi,
>>>>>>>
>>>>>>> On Thursday, June 09, 2011, Justin P. Mattock wrote:
>>>>>>>> From: "Justin P. Mattock"<[email protected]>
>>>>>>>>
>>>>>>>> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
>>>>>>>> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
>>>>>>>> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
>>>>>>>>
>>>>>>>> before:
>>>>>>>> [ 0.114915] Time: 1:47:03 Date: 06/09/11
>>>>>>>>
>>>>>>>> after:
>>>>>>>> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
>>>>>>>>
>>>>>>>> Signed-off-by: Justin P. Mattock<[email protected]>
>>>>>>>
>>>>>>> I suspect the goal is to mark messages printed by the PM trace code so that
>>>>>>> they can be easily distinguished from messages from other sources to avoid
>>>>>>> confusion. Why do you think it's a good idea to use the "UTC" string for
>>>>>>> this purpose? The time printed in those messages need not be UTC.
>>>>>>>
>>>>>>> It would be better to simply print "RTC time: ..., date: ..." IMO.
>>>>>>>
>>>>>>> Thanks,
>>>>>>> Rafael
>>>>>>>
>>>>>>
>>>>>> well.. if thats better, then thats better.. over here(people that dont
>>>>>> know what RTC time is) would not get so confused with a simple UTC or
>>>>>> PDT or whatever the time zone is but if RTC is bettr, then its better.
>>>>>
>>>>> My point is we don't know this time is always UTC, so we rather shouldn't
>>>>> label it as UTC unconditionally, should we?
>>>>>
>>>>> Rafael
>>>>>
>>>>
>>>> sounds good to me!!
>>>
>>> I'm not sure what you mean?
>>>
>>
>> with what you are saying "RTC" if anything.. rather than "UTC"
>
> So, it looks like you'd like the appended patch to be appiled?
>
> Rafael


whatever works best with you guys... I just tripped out on that, and
created what I had sent out..
>
> ---
> From: Rafael J. Wysocki<[email protected]>
> Subject: PM: Add "RTC" to PM trace time stamps to avoid confusion
>
> Some users are apparently confused by dmesg output from
> read_magic_time(), which looks like "real" time and date.
> Add the "RTC" string to time stamps printed by read_magic_time() to
> avoid that confusion.
>
> Reported-by: Justin P. Mattock<[email protected]>
> Signed-off-by: Rafael J. Wysocki<[email protected]>
> ---
> drivers/base/power/trace.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> Index: linux-2.6/drivers/base/power/trace.c
> ===================================================================
> --- linux-2.6.orig/drivers/base/power/trace.c
> +++ linux-2.6/drivers/base/power/trace.c
> @@ -112,7 +112,7 @@ static unsigned int read_magic_time(void
> unsigned int val;
>
> get_rtc_time(&time);
> - pr_info("Time: %2d:%02d:%02d Date: %02d/%02d/%02d\n",
> + pr_info("RTC time: %2d:%02d:%02d, date: %02d/%02d/%02d\n",
> time.tm_hour, time.tm_min, time.tm_sec,
> time.tm_mon + 1, time.tm_mday, time.tm_year % 100);
> val = time.tm_year; /* 100 years */
>


Justin P. Mattock

2011-06-14 20:02:12

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

On Tuesday, June 14, 2011, Justin P. Mattock wrote:
> On 06/13/2011 02:47 PM, Rafael J. Wysocki wrote:
> > On Monday, June 13, 2011, Justin P. Mattock wrote:
> >> On 06/12/2011 01:27 PM, Rafael J. Wysocki wrote:
> >>> On Sunday, June 12, 2011, Justin P. Mattock wrote:
> >>>> On 06/12/2011 11:35 AM, Rafael J. Wysocki wrote:
> >>>>> On Sunday, June 12, 2011, Justin P. Mattock wrote:
> >>>>>> On 06/12/2011 05:12 AM, Rafael J. Wysocki wrote:
> >>>>>>> Hi,
> >>>>>>>
> >>>>>>> On Thursday, June 09, 2011, Justin P. Mattock wrote:
> >>>>>>>> From: "Justin P. Mattock"<[email protected]>
> >>>>>>>>
> >>>>>>>> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
> >>>>>>>> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
> >>>>>>>> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
> >>>>>>>>
> >>>>>>>> before:
> >>>>>>>> [ 0.114915] Time: 1:47:03 Date: 06/09/11
> >>>>>>>>
> >>>>>>>> after:
> >>>>>>>> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
> >>>>>>>>
> >>>>>>>> Signed-off-by: Justin P. Mattock<[email protected]>
> >>>>>>>
> >>>>>>> I suspect the goal is to mark messages printed by the PM trace code so that
> >>>>>>> they can be easily distinguished from messages from other sources to avoid
> >>>>>>> confusion. Why do you think it's a good idea to use the "UTC" string for
> >>>>>>> this purpose? The time printed in those messages need not be UTC.
> >>>>>>>
> >>>>>>> It would be better to simply print "RTC time: ..., date: ..." IMO.
> >>>>>>>
> >>>>>>> Thanks,
> >>>>>>> Rafael
> >>>>>>>
> >>>>>>
> >>>>>> well.. if thats better, then thats better.. over here(people that dont
> >>>>>> know what RTC time is) would not get so confused with a simple UTC or
> >>>>>> PDT or whatever the time zone is but if RTC is bettr, then its better.
> >>>>>
> >>>>> My point is we don't know this time is always UTC, so we rather shouldn't
> >>>>> label it as UTC unconditionally, should we?
> >>>>>
> >>>>> Rafael
> >>>>>
> >>>>
> >>>> sounds good to me!!
> >>>
> >>> I'm not sure what you mean?
> >>>
> >>
> >> with what you are saying "RTC" if anything.. rather than "UTC"
> >
> > So, it looks like you'd like the appended patch to be appiled?
> >
> > Rafael
>
>
> whatever works best with you guys...

OK, I'll queue up the one below for 3.1, then.

> I just tripped out on that, and created what I had sent out..
> >
> > ---
> > From: Rafael J. Wysocki<[email protected]>
> > Subject: PM: Add "RTC" to PM trace time stamps to avoid confusion
> >
> > Some users are apparently confused by dmesg output from
> > read_magic_time(), which looks like "real" time and date.
> > Add the "RTC" string to time stamps printed by read_magic_time() to
> > avoid that confusion.
> >
> > Reported-by: Justin P. Mattock<[email protected]>
> > Signed-off-by: Rafael J. Wysocki<[email protected]>
> > ---
> > drivers/base/power/trace.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > Index: linux-2.6/drivers/base/power/trace.c
> > ===================================================================
> > --- linux-2.6.orig/drivers/base/power/trace.c
> > +++ linux-2.6/drivers/base/power/trace.c
> > @@ -112,7 +112,7 @@ static unsigned int read_magic_time(void
> > unsigned int val;
> >
> > get_rtc_time(&time);
> > - pr_info("Time: %2d:%02d:%02d Date: %02d/%02d/%02d\n",
> > + pr_info("RTC time: %2d:%02d:%02d, date: %02d/%02d/%02d\n",
> > time.tm_hour, time.tm_min, time.tm_sec,
> > time.tm_mon + 1, time.tm_mday, time.tm_year % 100);
> > val = time.tm_year; /* 100 years */
> >
>
>
> Justin P. Mattock
>
>

2011-06-14 20:04:14

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

On 06/14/2011 01:02 PM, Rafael J. Wysocki wrote:
> On Tuesday, June 14, 2011, Justin P. Mattock wrote:
>> On 06/13/2011 02:47 PM, Rafael J. Wysocki wrote:
>>> On Monday, June 13, 2011, Justin P. Mattock wrote:
>>>> On 06/12/2011 01:27 PM, Rafael J. Wysocki wrote:
>>>>> On Sunday, June 12, 2011, Justin P. Mattock wrote:
>>>>>> On 06/12/2011 11:35 AM, Rafael J. Wysocki wrote:
>>>>>>> On Sunday, June 12, 2011, Justin P. Mattock wrote:
>>>>>>>> On 06/12/2011 05:12 AM, Rafael J. Wysocki wrote:
>>>>>>>>> Hi,
>>>>>>>>>
>>>>>>>>> On Thursday, June 09, 2011, Justin P. Mattock wrote:
>>>>>>>>>> From: "Justin P. Mattock"<[email protected]>
>>>>>>>>>>
>>>>>>>>>> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
>>>>>>>>>> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
>>>>>>>>>> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
>>>>>>>>>>
>>>>>>>>>> before:
>>>>>>>>>> [ 0.114915] Time: 1:47:03 Date: 06/09/11
>>>>>>>>>>
>>>>>>>>>> after:
>>>>>>>>>> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
>>>>>>>>>>
>>>>>>>>>> Signed-off-by: Justin P. Mattock<[email protected]>
>>>>>>>>>
>>>>>>>>> I suspect the goal is to mark messages printed by the PM trace code so that
>>>>>>>>> they can be easily distinguished from messages from other sources to avoid
>>>>>>>>> confusion. Why do you think it's a good idea to use the "UTC" string for
>>>>>>>>> this purpose? The time printed in those messages need not be UTC.
>>>>>>>>>
>>>>>>>>> It would be better to simply print "RTC time: ..., date: ..." IMO.
>>>>>>>>>
>>>>>>>>> Thanks,
>>>>>>>>> Rafael
>>>>>>>>>
>>>>>>>>
>>>>>>>> well.. if thats better, then thats better.. over here(people that dont
>>>>>>>> know what RTC time is) would not get so confused with a simple UTC or
>>>>>>>> PDT or whatever the time zone is but if RTC is bettr, then its better.
>>>>>>>
>>>>>>> My point is we don't know this time is always UTC, so we rather shouldn't
>>>>>>> label it as UTC unconditionally, should we?
>>>>>>>
>>>>>>> Rafael
>>>>>>>
>>>>>>
>>>>>> sounds good to me!!
>>>>>
>>>>> I'm not sure what you mean?
>>>>>
>>>>
>>>> with what you are saying "RTC" if anything.. rather than "UTC"
>>>
>>> So, it looks like you'd like the appended patch to be appiled?
>>>
>>> Rafael
>>
>>
>> whatever works best with you guys...
>
> OK, I'll queue up the one below for 3.1, then.

cool..

>
>> I just tripped out on that, and created what I had sent out..
>>>
>>> ---
>>> From: Rafael J. Wysocki<[email protected]>
>>> Subject: PM: Add "RTC" to PM trace time stamps to avoid confusion
>>>
>>> Some users are apparently confused by dmesg output from
>>> read_magic_time(), which looks like "real" time and date.
>>> Add the "RTC" string to time stamps printed by read_magic_time() to
>>> avoid that confusion.
>>>
>>> Reported-by: Justin P. Mattock<[email protected]>
>>> Signed-off-by: Rafael J. Wysocki<[email protected]>
>>> ---
>>> drivers/base/power/trace.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> Index: linux-2.6/drivers/base/power/trace.c
>>> ===================================================================
>>> --- linux-2.6.orig/drivers/base/power/trace.c
>>> +++ linux-2.6/drivers/base/power/trace.c
>>> @@ -112,7 +112,7 @@ static unsigned int read_magic_time(void
>>> unsigned int val;
>>>
>>> get_rtc_time(&time);
>>> - pr_info("Time: %2d:%02d:%02d Date: %02d/%02d/%02d\n",
>>> + pr_info("RTC time: %2d:%02d:%02d, date: %02d/%02d/%02d\n",
>>> time.tm_hour, time.tm_min, time.tm_sec,
>>> time.tm_mon + 1, time.tm_mday, time.tm_year % 100);
>>> val = time.tm_year; /* 100 years */
>>>
>>
>>
>> Justin P. Mattock
>>
>>
>
>

2011-06-19 06:28:59

by Justin P. Mattock

[permalink] [raw]
Subject: Re: [PATCH]drivers:base:power:trace.c Add "UTC" Coordinated Universal Time to the printk.

On 06/14/2011 01:02 PM, Rafael J. Wysocki wrote:
> On Tuesday, June 14, 2011, Justin P. Mattock wrote:
>> On 06/13/2011 02:47 PM, Rafael J. Wysocki wrote:
>>> On Monday, June 13, 2011, Justin P. Mattock wrote:
>>>> On 06/12/2011 01:27 PM, Rafael J. Wysocki wrote:
>>>>> On Sunday, June 12, 2011, Justin P. Mattock wrote:
>>>>>> On 06/12/2011 11:35 AM, Rafael J. Wysocki wrote:
>>>>>>> On Sunday, June 12, 2011, Justin P. Mattock wrote:
>>>>>>>> On 06/12/2011 05:12 AM, Rafael J. Wysocki wrote:
>>>>>>>>> Hi,
>>>>>>>>>
>>>>>>>>> On Thursday, June 09, 2011, Justin P. Mattock wrote:
>>>>>>>>>> From: "Justin P. Mattock"<[email protected]>
>>>>>>>>>>
>>>>>>>>>> sounds stupid, but taking a glance at the time, and seeing the wrong time, or what seemed
>>>>>>>>>> wrong in dmesg, caused me to go into total check the time clock panic mode.. So the patch below adds:
>>>>>>>>>> "UTC" Coordinated Universal Time abreviation to the printk so people like me dont flip out over the time!
>>>>>>>>>>
>>>>>>>>>> before:
>>>>>>>>>> [ 0.114915] Time: 1:47:03 Date: 06/09/11
>>>>>>>>>>
>>>>>>>>>> after:
>>>>>>>>>> [ 0.114728] Time: 5:46:02 UTC Date: 06/09/11
>>>>>>>>>>
>>>>>>>>>> Signed-off-by: Justin P. Mattock<[email protected]>
>>>>>>>>>
>>>>>>>>> I suspect the goal is to mark messages printed by the PM trace code so that
>>>>>>>>> they can be easily distinguished from messages from other sources to avoid
>>>>>>>>> confusion. Why do you think it's a good idea to use the "UTC" string for
>>>>>>>>> this purpose? The time printed in those messages need not be UTC.
>>>>>>>>>
>>>>>>>>> It would be better to simply print "RTC time: ..., date: ..." IMO.
>>>>>>>>>
>>>>>>>>> Thanks,
>>>>>>>>> Rafael
>>>>>>>>>
>>>>>>>>
>>>>>>>> well.. if thats better, then thats better.. over here(people that dont
>>>>>>>> know what RTC time is) would not get so confused with a simple UTC or
>>>>>>>> PDT or whatever the time zone is but if RTC is bettr, then its better.
>>>>>>>
>>>>>>> My point is we don't know this time is always UTC, so we rather shouldn't
>>>>>>> label it as UTC unconditionally, should we?
>>>>>>>
>>>>>>> Rafael
>>>>>>>
>>>>>>
>>>>>> sounds good to me!!
>>>>>
>>>>> I'm not sure what you mean?
>>>>>
>>>>
>>>> with what you are saying "RTC" if anything.. rather than "UTC"
>>>
>>> So, it looks like you'd like the appended patch to be appiled?
>>>
>>> Rafael
>>
>>
>> whatever works best with you guys...
>
> OK, I'll queue up the one below for 3.1, then.

before anything happens, I just noticed down dmesg:

[ 1.931771] Magic number: 15:676:165
[ 1.940022] rtc_cmos 00:08: setting system clock to 2011-06-19
06:11:22 UTC (1308463882)
[ 1.948456] Initializing network drop monitor service

see how there is a UTC after the time. should this be for the above?
(keep in mind I just noticed this, so I could be wrong)

>
>> I just tripped out on that, and created what I had sent out..
>>>
>>> ---
>>> From: Rafael J. Wysocki<[email protected]>
>>> Subject: PM: Add "RTC" to PM trace time stamps to avoid confusion
>>>
>>> Some users are apparently confused by dmesg output from
>>> read_magic_time(), which looks like "real" time and date.
>>> Add the "RTC" string to time stamps printed by read_magic_time() to
>>> avoid that confusion.
>>>
>>> Reported-by: Justin P. Mattock<[email protected]>
>>> Signed-off-by: Rafael J. Wysocki<[email protected]>
>>> ---
>>> drivers/base/power/trace.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> Index: linux-2.6/drivers/base/power/trace.c
>>> ===================================================================
>>> --- linux-2.6.orig/drivers/base/power/trace.c
>>> +++ linux-2.6/drivers/base/power/trace.c
>>> @@ -112,7 +112,7 @@ static unsigned int read_magic_time(void
>>> unsigned int val;
>>>
>>> get_rtc_time(&time);
>>> - pr_info("Time: %2d:%02d:%02d Date: %02d/%02d/%02d\n",
>>> + pr_info("RTC time: %2d:%02d:%02d, date: %02d/%02d/%02d\n",
>>> time.tm_hour, time.tm_min, time.tm_sec,
>>> time.tm_mon + 1, time.tm_mday, time.tm_year % 100);
>>> val = time.tm_year; /* 100 years */
>>>
>>
>>
>> Justin P. Mattock
>>
>>
>
>