From: "Luiz Fernando N. Capitulino" <lcapitulino@mandriva.com.br>
To: Roman Mindalev <lists@r000n.net>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Kernel Testers List <kernel-testers@vger.kernel.org>
Subject: Re: [Bug #11035] System hangs on 2.6.26-rc8
Date: Thu, 10 Jul 2008 15:08:41 -0300 [thread overview]
Message-ID: <20080710150841.139c2a71@doriath.conectiva> (raw)
In-Reply-To: <487600B3.2010008@r000n.net>
[-- Attachment #1: Type: text/plain, Size: 1302 bytes --]
Em Thu, 10 Jul 2008 16:29:39 +0400
Roman Mindalev <lists@r000n.net> escreveu:
| Rafael J. Wysocki wrote:
| > This message has been generated automatically as a part of a report
| > of recent regressions.
| >
| > The following bug entry is on the current list of known regressions
| > from 2.6.25. Please verify if it still should be listed.
| >
| >
| > Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=11035
| > Subject : System hangs on 2.6.26-rc8
| > Submitter : Roman Mindalev <lists@r000n.net>
| > Date : 2008-07-02 14:25 (5 days old)
| > References : http://marc.info/?l=linux-kernel&m=121500871414995&w=4
| >
| >
| >
| I have this problem with 2.6.25 too.
| Unfortunately, I can't check 2.6.24. With config from 2.6.26-rc8 I got
| error of compiling:
|
| LD .tmp_vmlinux1
| kernel/built-in.o: In function `timespec_add_ns':
| /usr/src/kernels/linux-2.6.24/include/linux/time.h:179: undefined
| reference to `__umoddi3'
[...]
You're trying to compile with gcc 4.3, right? You can try the
attached fix or the following cherry-pick if you're compiling
from a git tree:
$ git cherry-pick 38332cb98772f5ea757e6486bed7ed0381cb5f98
But I can't tell whether the compiler and/or the fix will
change the behaivor of the bug you're reporting.
--
Luiz Fernando N. Capitulino
[-- Attachment #2: time.patch --]
[-- Type: text/x-patch, Size: 1011 bytes --]
commit 38332cb98772f5ea757e6486bed7ed0381cb5f98
Author: Segher Boessenkool <segher@kernel.crashing.org>
Date: Tue Mar 4 14:59:54 2008 -0800
time: prevent the loop in timespec_add_ns() from being optimised away
Since some architectures don't support __udivdi3().
Signed-off-by: Segher Boessenkool <segher@kernel.crashing.org>
Cc: john stultz <johnstul@us.ibm.com>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
diff --git a/include/linux/time.h b/include/linux/time.h
index 2091a19..d32ef0a 100644
--- a/include/linux/time.h
+++ b/include/linux/time.h
@@ -174,6 +174,10 @@ static inline void timespec_add_ns(struct timespec *a, u64 ns)
{
ns += a->tv_nsec;
while(unlikely(ns >= NSEC_PER_SEC)) {
+ /* The following asm() prevents the compiler from
+ * optimising this loop into a modulo operation. */
+ asm("" : "+r"(ns));
+
ns -= NSEC_PER_SEC;
a->tv_sec++;
}
next prev parent reply other threads:[~2008-07-10 18:09 UTC|newest]
Thread overview: 109+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-06 11:39 2.6.26-rc9: Reported regressions from 2.6.25 Rafael J. Wysocki
2008-07-06 11:39 ` [Bug #10493] mips BCM47XX compile error Rafael J. Wysocki
2008-07-06 13:39 ` Adrian Bunk
2008-07-06 11:45 ` [Bug #10860] total system freeze at boot with 2.6.26-rc Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10821] rt25xx: lock dependency warning, association failure, and kmalloc corruption Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10725] USB Mass storage mount fails: Write protect on Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10786] parisc: 64bit SMP does not boot on J5600 Rafael J. Wysocki
2008-07-10 13:42 ` Domenico Andreoli
2008-07-24 16:43 ` Domenico Andreoli
2008-07-06 11:45 ` [Bug #10724] ACPI: EC: GPE storm detected, disabling EC GPE Rafael J. Wysocki
2008-07-06 17:44 ` Justin Mattock
2008-07-06 11:45 ` [Bug #10629] 2.6.26-rc1-$sha1: RIP __d_lookup+0x8c/0x160 Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10714] powerpc: Badness seen on 2.6.26-rc2 with lockdep enabled Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10741] bug in `tty: BKL pushdown'? Rafael J. Wysocki
2008-07-06 14:47 ` Johannes Weiner
2008-07-06 11:45 ` [Bug #10843] Display artifacts on XOrg logout with PAT kernel and VESA framebuffer Rafael J. Wysocki
2008-07-06 23:08 ` Frans Pop
2008-07-06 11:45 ` [Bug #10815] 2.6.26-rc4: RIP find_pid_ns+0x6b/0xa0 Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10726] x86-64 NODES_SHIFT compile failure Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10984] MMC print trace information when resume from suspend Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10989] kernel oopses when wiggling the mouse to make it known to hidd Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #11024] 2.6.25 to 2.6.26-rc8 regression (related to ahci and acpi _GTF) Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10872] x86_64 boot hang when CONFIG_NUMA=n Rafael J. Wysocki
2008-07-06 18:17 ` Randy Dunlap
2008-07-06 18:33 ` Linus Torvalds
2008-07-07 6:32 ` Ingo Molnar
2008-07-07 6:57 ` Yinghai Lu
2008-07-07 18:39 ` Randy Dunlap
2008-07-07 22:40 ` Randy Dunlap
2008-07-08 0:24 ` Yinghai Lu
2008-07-08 5:28 ` Randy Dunlap
2008-07-08 7:07 ` Yinghai Lu
2008-07-08 15:44 ` Randy Dunlap
2008-07-08 19:02 ` Yinghai Lu
2008-07-08 5:16 ` Ingo Molnar
2008-07-08 15:39 ` Randy Dunlap
2008-07-07 6:42 ` Ingo Molnar
2008-07-07 7:15 ` Yinghai Lu
2008-07-07 7:24 ` Ingo Molnar
2008-07-06 11:45 ` [Bug #11008] after laptop re-dock: usb-storage device no longer detected Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #11009] No console on Riva TNT since 2.6.26-0.rc4 Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #11006] 2.6.26-rc6: pcmcia stopped working Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #9791] Clock is running too fast^Wslow using acpi_pm clocksource Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10919] [regression] display dimming is slow and laggy - Acer Travelmate 661lci Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #11042] build issue #477 for v2.6.26-rc8-290-gb8a0b6c : input_event" [drivers/media/dvb/ttpci/dvb-ttpci.ko] undefined! Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10954] hda_intel: azx_get_response timeout, switching to polling mode: last cmd=0x011f000c Rafael J. Wysocki
2008-07-06 17:47 ` Justin Mattock
2008-07-06 11:45 ` [Bug #11039] 2.6.28-rc8-git3 forcedeth WARNING (kills the interface) Rafael J. Wysocki
2008-07-06 13:44 ` Brad Campbell
2008-07-06 11:45 ` [Bug #10865] Oops trying to mount an ntfs partition on thinkpad Rafael J. Wysocki
2008-07-06 16:07 ` Alex Romosan
2008-07-06 11:45 ` [Bug #10862] forcedeth: lockdep warning on ethtool -s Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10985] backlight doesn't come on after resume with i915 video Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #11040] 2.6.26-rc: host can not shutdown: ata problem Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10906] repeatable slab corruption with LTP msgctl08 Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #11035] System hangs on 2.6.26-rc8 Rafael J. Wysocki
2008-07-10 12:29 ` Roman Mindalev
2008-07-10 18:08 ` Luiz Fernando N. Capitulino [this message]
2008-07-12 15:07 ` Roman Mindalev
2008-07-12 15:48 ` Roman Mindalev
2008-07-15 13:40 ` Roman Mindalev
2008-07-18 7:11 ` Ingo Molnar
2008-07-18 7:17 ` Nigel Cunningham
2008-07-18 7:28 ` Vegard Nossum
2008-07-18 22:25 ` Ingo Molnar
2008-07-06 11:45 ` [Bug #11041] All 2.6.26-rcX hang immediately after loading ohci_hcd Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10960] 2.6.26-rc: SPARC: Sun Ultra 10 can not boot Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10971] radeonfb : radeon X800 family support (atombios) Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10955] v2.6.26-rc7: BUG task_struct: Poison overwritten Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #11023] 2.6.26-rc8-git2 - kernel BUG at mm/page_alloc.c:585 Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10957] pata_pcmcia with Sandisk Extreme III 8GB Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #11025] [problem] raid performance loss with 2.6.26-rc8 on 32-bit x86 (bisected) Rafael J. Wysocki
2008-07-07 16:16 ` Mel Gorman
2008-07-07 22:30 ` Rafael J. Wysocki
2008-07-06 11:45 ` [Bug #10861] 2.6.26-rc4-git2 - long pause during boot Rafael J. Wysocki
2008-07-06 14:33 ` James Bottomley
2008-07-06 17:16 ` Rafael J. Wysocki
2008-07-06 14:14 ` 2.6.26-rc9: Reported regressions from 2.6.25 Ingo Molnar
2008-07-06 15:46 ` Linus Torvalds
2008-07-06 15:58 ` Adrian Bunk
2008-07-06 17:05 ` Rafael J. Wysocki
2008-07-06 17:40 ` Adrian Bunk
2008-07-06 18:02 ` Rafael J. Wysocki
2008-07-06 18:26 ` Adrian Bunk
2008-07-06 21:04 ` Rafael J. Wysocki
2008-07-06 21:32 ` Adrian Bunk
2008-07-06 21:47 ` Linus Torvalds
2008-07-06 22:19 ` Adrian Bunk
2008-07-06 22:27 ` Linus Torvalds
2008-07-06 23:06 ` Adrian Bunk
2008-07-06 23:55 ` Johannes Weiner
2008-07-07 8:58 ` Adrian Bunk
2008-07-06 21:47 ` Rafael J. Wysocki
2008-07-06 21:56 ` Rafael J. Wysocki
2008-07-06 22:10 ` Rene Herman
2008-07-06 22:57 ` Rafael J. Wysocki
2008-07-06 23:05 ` Rene Herman
2008-07-06 23:15 ` Rafael J. Wysocki
2008-07-06 23:11 ` Nigel Cunningham
2008-07-06 22:07 ` Adrian Bunk
2008-07-06 16:11 ` James Bottomley
2008-07-06 16:58 ` Ingo Molnar
2008-08-01 21:09 ` Paul E. McKenney
2008-07-07 17:37 ` Pavel Machek
2008-07-07 18:26 ` Maximilian Engelhardt
2008-08-01 21:09 ` Paul E. McKenney
2008-07-06 21:54 ` Linus Torvalds
2008-07-06 22:00 ` Rafael J. Wysocki
2008-07-07 0:51 ` Benjamin Herrenschmidt
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=20080710150841.139c2a71@doriath.conectiva \
--to=lcapitulino@mandriva.com.br \
--cc=kernel-testers@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lists@r000n.net \
--cc=rjw@sisk.pl \
/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
Powered by JetHome