WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] timers: Fix printk format specifier

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] timers: Fix printk format specifier
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 26 Aug 2010 03:30:52 -0700
Delivery-date: Thu, 26 Aug 2010 03:34:10 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1282231453 -3600
# Node ID 60746a2c14a6cc123892f973fbdd6acb73251d39
# Parent  88f4d10e05081c7a0e93ea162b5103bc3a52c910
timers: Fix printk format specifier

Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx>
---
 xen/common/timer.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -r 88f4d10e0508 -r 60746a2c14a6 xen/common/timer.c
--- a/xen/common/timer.c        Thu Aug 19 15:33:43 2010 +0100
+++ b/xen/common/timer.c        Thu Aug 19 16:24:13 2010 +0100
@@ -499,7 +499,7 @@ s_time_t align_timer(s_time_t firsttick,
 
 static void dump_timer(struct timer *t, s_time_t now)
 {
-    printk("  ex=%8ldus timer=%p cb=%p(%p)",
+    printk("  ex=%8"PRId64"us timer=%p cb=%p(%p)",
            (t->expires - now) / 1000, t, t->function, t->data);
     print_symbol(" %s\n", (unsigned long)t->function);
 }

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] timers: Fix printk format specifier, Xen patchbot-unstable <=