All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] Change a time printout representation for keyhandlers
@ 2018-09-12 15:58 Andrii Anisov
  2018-09-12 16:47 ` Dario Faggioli
  0 siblings, 1 reply; 3+ messages in thread
From: Andrii Anisov @ 2018-09-12 15:58 UTC (permalink / raw)
  To: xen-devel
  Cc: Stefano Stabellini, Andrii Anisov, Konrad Rzeszutek Wilk,
	George Dunlap, Andrew Cooper, Ian Jackson, Tim Deegan,
	Julien Grall, Jan Beulich, Wei Liu

From: Andrii Anisov <andrii_anisov@epam.com>

For different keyhandlers, replace a hex with delimiter representation
of time to PRI_stime which is decimal ns currently.

Signed-off-by: Andrii Anisov <andrii_anisov@epam.com>
---

Changes in v2:
    - Time representation change propagated to all keyhandlers as agreed here [1]
    - Title and message are changed

[1] - https://lists.xenproject.org/archives/html/xen-devel/2018-09/msg00999.html

---
 xen/arch/x86/numa.c     | 4 ++--
 xen/common/page_alloc.c | 4 ++--
 xen/common/perfc.c      | 6 ++----
 xen/common/spinlock.c   | 8 +++-----
 4 files changed, 9 insertions(+), 13 deletions(-)

diff --git a/xen/arch/x86/numa.c b/xen/arch/x86/numa.c
index a87987d..d13414a 100644
--- a/xen/arch/x86/numa.c
+++ b/xen/arch/x86/numa.c
@@ -378,8 +378,8 @@ static void dump_numa(unsigned char key)
     unsigned int page_num_node[MAX_NUMNODES];
     const struct vnuma_info *vnuma;
 
-    printk("'%c' pressed -> dumping numa info (now-0x%X:%08X)\n", key,
-           (u32)(now>>32), (u32)now);
+    printk("'%c' pressed -> dumping numa info (now = %"PRI_stime")\n", key,
+           now);
 
     for_each_online_node ( i )
     {
diff --git a/xen/common/page_alloc.c b/xen/common/page_alloc.c
index 02aeed7..16e1b0c 100644
--- a/xen/common/page_alloc.c
+++ b/xen/common/page_alloc.c
@@ -2420,8 +2420,8 @@ static void dump_heap(unsigned char key)
     s_time_t      now = NOW();
     int           i, j;
 
-    printk("'%c' pressed -> dumping heap info (now-0x%X:%08X)\n", key,
-           (u32)(now>>32), (u32)now);
+    printk("'%c' pressed -> dumping heap info (now = %"PRI_stime")\n", key,
+           now);
 
     for ( i = 0; i < MAX_NUMNODES; i++ )
     {
diff --git a/xen/common/perfc.c b/xen/common/perfc.c
index 0675677..3abe358 100644
--- a/xen/common/perfc.c
+++ b/xen/common/perfc.c
@@ -33,8 +33,7 @@ void perfc_printall(unsigned char key)
     unsigned int i, j;
     s_time_t now = NOW();
 
-    printk("Xen performance counters SHOW  (now = 0x%08X:%08X)\n",
-           (u32)(now>>32), (u32)now);
+    printk("Xen performance counters SHOW  (now = %"PRI_stime")\n", now);
 
     for ( i = j = 0; i < NR_PERFCTRS; i++ )
     {
@@ -122,8 +121,7 @@ void perfc_reset(unsigned char key)
     s_time_t now = NOW();
 
     if ( key != '\0' )
-        printk("Xen performance counters RESET (now = 0x%08X:%08X)\n",
-               (u32)(now>>32), (u32)now);
+        printk("Xen performance counters RESET (now = %"PRI_stime")\n", now);
 
     /* leave STATUS counters alone -- don't reset */
 
diff --git a/xen/common/spinlock.c b/xen/common/spinlock.c
index 36e31c9..6bc52d7 100644
--- a/xen/common/spinlock.c
+++ b/xen/common/spinlock.c
@@ -359,9 +359,8 @@ void spinlock_profile_printall(unsigned char key)
     s_time_t diff;
 
     diff = now - lock_profile_start;
-    printk("Xen lock profile info SHOW  (now = %08X:%08X, "
-        "total = %08X:%08X)\n", (u32)(now>>32), (u32)now,
-        (u32)(diff>>32), (u32)diff);
+    printk("Xen lock profile info SHOW  (now = %"PRI_stime" total = "
+           "%"PRI_stime")\n", now, diff);
     spinlock_profile_iterate(spinlock_profile_print_elem, NULL);
 }
 
@@ -379,8 +378,7 @@ void spinlock_profile_reset(unsigned char key)
     s_time_t now = NOW();
 
     if ( key != '\0' )
-        printk("Xen lock profile info RESET (now = %08X:%08X)\n",
-            (u32)(now>>32), (u32)now);
+        printk("Xen lock profile info RESET (now = %"PRI_stime")\n", now);
     lock_profile_start = now;
     spinlock_profile_iterate(spinlock_profile_reset_elem, NULL);
 }
-- 
2.7.4


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] Change a time printout representation for keyhandlers
  2018-09-12 15:58 [PATCH v2] Change a time printout representation for keyhandlers Andrii Anisov
@ 2018-09-12 16:47 ` Dario Faggioli
  2018-09-12 16:54   ` Andrii Anisov
  0 siblings, 1 reply; 3+ messages in thread
From: Dario Faggioli @ 2018-09-12 16:47 UTC (permalink / raw)
  To: Andrii Anisov, xen-devel
  Cc: Stefano Stabellini, Andrii Anisov, Konrad Rzeszutek Wilk,
	George Dunlap, Andrew Cooper, Ian Jackson, Tim Deegan,
	Julien Grall, Jan Beulich, Wei Liu


[-- Attachment #1.1: Type: text/plain, Size: 898 bytes --]

On Wed, 2018-09-12 at 18:58 +0300, Andrii Anisov wrote:
> From: Andrii Anisov <andrii_anisov@epam.com>
> 
> For different keyhandlers, replace a hex with delimiter
> representation
> of time to PRI_stime which is decimal ns currently.
> 
> Signed-off-by: Andrii Anisov <andrii_anisov@epam.com>
> ---
> 
> Changes in v2:
>     - Time representation change propagated to all keyhandlers as
> agreed here [1]
>     - Title and message are changed
> 
> [1] - 
> https://lists.xenproject.org/archives/html/xen-devel/2018-09/msg00999.html
>
Right. But am I missing something, or you forgot dump_domains() in
xen/common/keyhandler.c ?

Dario
-- 
<<This happens because I choose it to happen!>> (Raistlin Majere)
-----------------------------------------------------------------
Dario Faggioli, Ph.D, http://about.me/dario.faggioli
Software Engineer @ SUSE https://www.suse.com/

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 157 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] Change a time printout representation for keyhandlers
  2018-09-12 16:47 ` Dario Faggioli
@ 2018-09-12 16:54   ` Andrii Anisov
  0 siblings, 0 replies; 3+ messages in thread
From: Andrii Anisov @ 2018-09-12 16:54 UTC (permalink / raw)
  To: Dario Faggioli, Andrii Anisov, xen-devel
  Cc: Stefano Stabellini, Wei Liu, Konrad Rzeszutek Wilk,
	George Dunlap, Andrew Cooper, Tim Deegan, Julien Grall,
	Jan Beulich, Ian Jackson


On 12.09.18 19:47, Dario Faggioli wrote:
> Right. But am I missing something, or you forgot dump_domains() in
> xen/common/keyhandler.c ?
You are OK. I've missed it :(

-- 

*Andrii Anisov*



_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-09-12 16:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-12 15:58 [PATCH v2] Change a time printout representation for keyhandlers Andrii Anisov
2018-09-12 16:47 ` Dario Faggioli
2018-09-12 16:54   ` Andrii Anisov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.