From: Ingo Molnar <mingo@elte.hu>
To: Mark Knecht <markknecht@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>,
Lee Revell <rlrevell@joe-job.com>,
linux-kernel@vger.kernel.org, rmk@arm.linux.org.uk
Subject: Re: -rt10 build problem [WAS]Re: scsi_eh / 1394 bug - -rt7
Date: Wed, 19 Oct 2005 16:54:35 +0200 [thread overview]
Message-ID: <20051019145435.GA6455@elte.hu> (raw)
In-Reply-To: <5bdc1c8b0510190750s377a2696kf9c323789b392664@mail.gmail.com>
* Mark Knecht <markknecht@gmail.com> wrote:
> Problem building 2.6.14-rc4-rt10. The only change to my config file
> was to turn on a few options for Mac disks. I doubt that's involved
> with this. I will send the .config file if requested.
does the patch below fix it?
Ingo
Index: linux/kernel/ktimers.c
===================================================================
--- linux.orig/kernel/ktimers.c
+++ linux/kernel/ktimers.c
@@ -1097,17 +1097,19 @@ static void check_ktimer_signal(struct k
printk("\n");
printk("expires: %u/%u\n",
- timer->expires.tv.sec, timer->expires.tv.nsec);
+ ktime_get_high(timer->expires),
+ ktime_get_low(timer->expires));
printk("expired: %u/%u\n",
- timer->expired.tv.sec, timer->expired.tv.nsec);
- printk(" at: %d\n",
- timer->expiry_mode);
+ ktime_get_high(timer->expired),
+ ktime_get_low(timer->expired));
+ printk(" at: %d\n", timer->expiry_mode);
printk("interval: %u/%u\n",
- timer->interval.tv.sec, timer->interval.tv.nsec);
+ ktime_get_high(timer->interval),
+ ktime_get_low(timer->interval));
printk("now: %u/%u\n",
- now.tv.sec, now.tv.nsec);
+ ktime_get_high(now), ktime_get_low(now));
printk("rem: %u/%u\n",
- rem.tv.sec, rem.tv.nsec);
+ ktime_get_high(rem), ktime_get_low(rem));
printk("overrun: %d\n", timer->overrun);
#ifdef CONFIG_HIGH_RES_TIMERS
printk("getoffset: %p\n", base->getoffset);
next prev parent reply other threads:[~2005-10-19 14:54 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-10-19 14:50 Mark Knecht
2005-10-19 14:54 ` Russell King
2005-10-19 14:54 ` Ingo Molnar [this message]
2005-10-19 15:12 ` Mark Knecht
2005-10-19 19:38 ` Ingo Molnar
2005-10-19 20:10 ` Mark Knecht
2005-10-20 6:15 ` Ingo Molnar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20051019145435.GA6455@elte.hu \
--to=mingo@elte.hu \
--cc=linux-kernel@vger.kernel.org \
--cc=markknecht@gmail.com \
--cc=rlrevell@joe-job.com \
--cc=rmk@arm.linux.org.uk \
--cc=rostedt@goodmis.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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®