[linux] 01/03: hrtimer: Fix type mismatch in print_timer() after ABI fix

debian-kernel at lists.debian.org debian-kernel at lists.debian.org
Mon Mar 7 04:00:12 UTC 2016


This is an automated email from the git hooks/post-receive script.

benh pushed a commit to branch wheezy
in repository linux.

commit 8b5abc35ffab9a9246be683db106b8b99b4a0cbb
Author: Ben Hutchings <ben at decadent.org.uk>
Date:   Mon Mar 7 02:24:07 2016 +0000

    hrtimer: Fix type mismatch in print_timer() after ABI fix
---
 debian/patches/debian/hrtimer-fix-abi-change-in-3.2.78.patch | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/debian/patches/debian/hrtimer-fix-abi-change-in-3.2.78.patch b/debian/patches/debian/hrtimer-fix-abi-change-in-3.2.78.patch
index 8b8d901..c112137 100644
--- a/debian/patches/debian/hrtimer-fix-abi-change-in-3.2.78.patch
+++ b/debian/patches/debian/hrtimer-fix-abi-change-in-3.2.78.patch
@@ -56,3 +56,14 @@ also broke ABI; undo that.
  
  #ifdef CONFIG_NO_HZ
  /**
+--- a/kernel/time/timer_list.c
++++ b/kernel/time/timer_list.c
+@@ -57,7 +57,7 @@ print_timer(struct seq_file *m, struct h
+ 	print_name_offset(m, taddr);
+ 	SEQ_printf(m, ", ");
+ 	print_name_offset(m, timer->function);
+-	SEQ_printf(m, ", S:%02x", timer->state);
++	SEQ_printf(m, ", S:%02x", (unsigned int)timer->state);
+ #ifdef CONFIG_TIMER_STATS
+ 	SEQ_printf(m, ", ");
+ 	print_name_offset(m, timer->start_site);

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/kernel/linux.git



More information about the Kernel-svn-changes mailing list