All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
	Norbert Preining <preining@logic.at>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Jens Axboe <jens.axboe@oracle.com>,
	Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Subject: Re: 2.6.29-rc3-git6: Reported regressions from 2.6.28
Date: Wed, 4 Feb 2009 17:32:13 +0100	[thread overview]
Message-ID: <20090204163213.GA25996@elte.hu> (raw)
In-Reply-To: <alpine.LFD.2.00.0902040759420.3247@localhost.localdomain>


* Linus Torvalds <torvalds@linux-foundation.org> wrote:

> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=12505
> > Subject		: 2.6.29-rc1 Firefox crashing on page load
> > Submitter	: Justin Madru <jdm64@gawab.com>
> > Date		: 2009-01-16 20:56 (20 days old)
> > First-Bad-Commit: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4217458dafaa57d8e26a46f5d05ab8c53cf64191
> > References	: http://marc.info/?l=linux-kernel&m=123213941914274&w=4
> > Handled-By	: Justin P. Mattock <justinmattock@gmail.com>
> 
> Heh. That commit you point to is very innocuous.
> 
> Commit 4217458dafaa57d8e26a46f5d05ab8c53cf64191 is a pure cleanup, and it 
> _does_ make the code look nicer, but while it looks lik a total no-op, it 
> actually has a very subtle behavioural change: it makes gcc think that it 
> owns the whole argument stack. Which is _not_ true of 'asmlinkage' 
> functions, but we've never been able to tell gcc to keep its grubby hands 
> off our stack.
> 
> So I suspect that gcc inlines the function and then creates a function 
> call that re-uses the "struct pt_regs" on the stack as the argument area 
> too. Which corrupts the "pt_regs", and then we return to user space with 
> some random register contents.

yes - i tracked it down back then, just the regression entry didnt get 
updated.

> So I think we need to just revert it. Ingo, Hiroshi?

should be fixed upstream by:

 552b8aa: Revert "x86: signal: change type of paramter for sys_rt_sigreturn()"

the revert commit is below with explaination - also with a Tested-by tag. 
The revert is not a pure revert - it also adds a comment to preserve this 
circumstance cleanly.

We first had a few fruitless attempts to annotate it in some clear fashion 
(the existing tailcall-avoidance macros we have didnt suit this case) - then 
went for the revert because none of the variants that told gcc not to screw 
up actually made the code better than it was originally.

	Ingo

-------------->
>From 552b8aa4d1edcc1c764ff6f61a7686347a2d1827 Mon Sep 17 00:00:00 2001
From: Ingo Molnar <mingo@elte.hu>
Date: Tue, 20 Jan 2009 09:31:49 +0100
Subject: [PATCH] Revert "x86: signal: change type of paramter for sys_rt_sigreturn()"

This reverts commit 4217458dafaa57d8e26a46f5d05ab8c53cf64191.

Justin Madru bisected this commit, it was causing weird Firefox
crashes.

The reason is that GCC mis-optimizes (re-uses) the on-stack parameters of
the calling frame, which corrupts the syscall return pt_regs state and
thus corrupts user-space register state.

So we go back to the slightly less clean but more optimization-safe
method of getting to pt_regs. Also add a comment to explain this.

Resolves: http://bugzilla.kernel.org/show_bug.cgi?id=12505

Reported-and-bisected-by: Justin Madru <jdm64@gawab.com>
Tested-by: Justin Madru <jdm64@gawab.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
 arch/x86/include/asm/syscalls.h |    2 +-
 arch/x86/kernel/signal.c        |   11 +++++++++--
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/arch/x86/include/asm/syscalls.h b/arch/x86/include/asm/syscalls.h
index 9c6797c..c0b0bda 100644
--- a/arch/x86/include/asm/syscalls.h
+++ b/arch/x86/include/asm/syscalls.h
@@ -40,7 +40,7 @@ asmlinkage int sys_sigaction(int, const struct old_sigaction __user *,
 			     struct old_sigaction __user *);
 asmlinkage int sys_sigaltstack(unsigned long);
 asmlinkage unsigned long sys_sigreturn(unsigned long);
-asmlinkage int sys_rt_sigreturn(struct pt_regs);
+asmlinkage int sys_rt_sigreturn(unsigned long);
 
 /* kernel/ioport.c */
 asmlinkage long sys_iopl(unsigned long);
diff --git a/arch/x86/kernel/signal.c b/arch/x86/kernel/signal.c
index 89bb766..df0587f 100644
--- a/arch/x86/kernel/signal.c
+++ b/arch/x86/kernel/signal.c
@@ -632,9 +632,16 @@ badframe:
 }
 
 #ifdef CONFIG_X86_32
-asmlinkage int sys_rt_sigreturn(struct pt_regs regs)
+/*
+ * Note: do not pass in pt_regs directly as with tail-call optimization
+ * GCC will incorrectly stomp on the caller's frame and corrupt user-space
+ * register state:
+ */
+asmlinkage int sys_rt_sigreturn(unsigned long __unused)
 {
-	return do_rt_sigreturn(&regs);
+	struct pt_regs *regs = (struct pt_regs *)&__unused;
+
+	return do_rt_sigreturn(regs);
 }
 #else /* !CONFIG_X86_32 */
 asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)

  reply	other threads:[~2009-02-04 16:33 UTC|newest]

Thread overview: 286+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-02-04 10:21 2.6.29-rc3-git6: Reported regressions from 2.6.28 Rafael J. Wysocki
2009-02-04 10:21 ` Rafael J. Wysocki
2009-02-04 10:21 ` [Bug #12400] git-latest: kernel oops in IOMMU setup Rafael J. Wysocki
2009-02-04 10:21   ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12414] iwl4965 cannot use "ap auto" on latest 2.6.28/29? Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 19:15   ` Jeff Chua
2009-02-04 19:15     ` Jeff Chua
     [not found]     ` <b6a2187b0902041115u130fcfe7ha1612e2e2fa1ec36-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-05  1:37       ` Rafael J. Wysocki
2009-02-05  1:37         ` Rafael J. Wysocki
     [not found]         ` <200902050237.39394.rjw-KKrjLPT3xs0@public.gmane.org>
2009-02-05 14:34           ` Jeff Chua
2009-02-05 14:34             ` Jeff Chua
2009-02-14 11:41   ` Jeff Chua
2009-02-14 11:41     ` Jeff Chua
     [not found]     ` <b6a2187b0902140341y2a1da743o7b012e6386583a62-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-14 18:46       ` Jeff Chua
2009-02-14 18:46         ` Jeff Chua
     [not found]         ` <b6a2187b0902141046r76f80b9ar6df6a0e2472ef61b-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-14 20:10           ` Rafael J. Wysocki
2009-02-14 20:10             ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12416] Recent change to kernel spikes out ccache/distcc Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-05  1:57   ` Theodore Tso
2009-02-05  1:57     ` Theodore Tso
     [not found]     ` <20090205015725.GF8945-3s7WtUTddSA@public.gmane.org>
2009-02-05  2:13       ` Rafael J. Wysocki
2009-02-05  2:13         ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12415] WARNING: at drivers/net/wireless/iwlwifi/iwl-sta.c:689 Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 13:04   ` Christian Borntraeger
2009-02-04 13:04     ` Christian Borntraeger
     [not found]     ` <200902041404.46539.borntraeger-tA70FqPdS9bQT0dZR+AlfA@public.gmane.org>
2009-02-05  1:39       ` Rafael J. Wysocki
2009-02-05  1:39         ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12419] possible circular locking dependency on i915 dma Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12417] glx performance drop with: "x86: PAT: implement track/untrack of pfnmap regions for x86 - v3" Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 13:46   ` Ingo Molnar
2009-02-04 13:46     ` Ingo Molnar
     [not found]     ` <20090204134612.GB17024-X9Un+BFzKDI@public.gmane.org>
2009-02-04 16:02       ` Alexey Fisher
2009-02-04 16:02         ` Alexey Fisher
     [not found]         ` <4989BC16.4080602-M18mAb7Tlt0yCq4wW13eYl6hYfS7NtTn@public.gmane.org>
2009-02-04 16:42           ` Ingo Molnar
2009-02-04 16:42             ` Ingo Molnar
     [not found]             ` <20090204164257.GD25996-X9Un+BFzKDI@public.gmane.org>
2009-02-05  0:55               ` Rafael J. Wysocki
2009-02-05  0:55                 ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12427] cpumask change causes sparc build bustage Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12418] Repeated ioctl(4, 0x40046445, ..) loop in glxgears Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12491] i915 lockdep warning Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 22:37   ` Roland Dreier
2009-02-04 22:37     ` Roland Dreier
     [not found]     ` <adar62dltg1.fsf-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
2009-02-05  1:03       ` Rafael J. Wysocki
2009-02-05  1:03         ` Rafael J. Wysocki
2009-02-06 22:46         ` Roland Dreier
2009-02-06 22:46           ` Roland Dreier
2009-02-06 23:40           ` Jesse Barnes
2009-02-06 23:40             ` Jesse Barnes
     [not found]           ` <adar62bchfw.fsf-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
2009-02-07  1:20             ` Brandeburg, Jesse
2009-02-07  1:20               ` Brandeburg, Jesse
     [not found]               ` <F169D4F5E1F1974DBFAFABF47F60C10A1DFD867C-osO9UTpF0URzLByeVOV5+bfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2009-02-07  1:48                 ` Roland Dreier
2009-02-07  1:48                   ` Roland Dreier
     [not found]                   ` <adabptfc90m.fsf-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>
2009-02-07 13:53                     ` Rafael J. Wysocki
2009-02-07 13:53                       ` Rafael J. Wysocki
2009-02-11  0:43                     ` Eric Anholt
2009-02-11  0:43                       ` Eric Anholt
2009-02-11 18:14                       ` Roland Dreier
2009-02-11 18:14                         ` Roland Dreier
2009-02-04 10:23 ` [Bug #12444] X hangs following switch from radeonfb console - Bisected Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12490] ath5k related kernel panic in 2.6.29-rc1 Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-06 18:48   ` Bob Copeland
2009-02-06 18:48     ` Bob Copeland
     [not found]     ` <20090206184156.M22909-aXfl/3sk2vNUbtYUoyoikg@public.gmane.org>
2009-02-06 23:55       ` Rafael J. Wysocki
2009-02-06 23:55         ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12441] Xorg can't use dri on radeon X1950 AGP Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12495] thinkpad problems during resume Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 13:06   ` Christian Borntraeger
2009-02-04 13:06     ` Christian Borntraeger
     [not found]     ` <200902041406.50578.borntraeger-tA70FqPdS9bQT0dZR+AlfA@public.gmane.org>
2009-02-05  1:41       ` Rafael J. Wysocki
2009-02-05  1:41         ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12496] swsusp cannot find resume device (sometimes) Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12493] ACPI related kernel panic when booting 2.6.29-rc2 Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12494] Sony backlight regression from 2.6.28 to 29-rc Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12501] build bug in eeepc-laptop.c Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 10:23 ` [Bug #12497] new barrier warnings in 2.6.29-rc1 Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-06  8:12   ` Christoph Hellwig
2009-02-06  8:12     ` Christoph Hellwig
2009-02-04 10:23 ` [Bug #12499] Problem with using bluetooth adaper connected to usb port Rafael J. Wysocki
2009-02-04 10:23   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12505] 2.6.29-rc1 Firefox crashing on page load Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 15:23   ` Justin Mattock
2009-02-04 15:23     ` Justin Mattock
     [not found]     ` <dd18b0c30902040723m70f87f7fp4af32702410036d7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-04 16:46       ` Ingo Molnar
2009-02-04 16:46         ` Ingo Molnar
     [not found]         ` <20090204164623.GE25996-X9Un+BFzKDI@public.gmane.org>
2009-02-04 18:15           ` Justin Mattock
2009-02-04 18:15             ` Justin Mattock
     [not found]             ` <dd18b0c30902041015m2213d94cx72d41bd225afa3e9-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-05  1:08               ` Rafael J. Wysocki
2009-02-05  1:08                 ` Rafael J. Wysocki
     [not found]                 ` <200902050208.15776.rjw-KKrjLPT3xs0@public.gmane.org>
2009-02-05  1:37                   ` Justin Mattock
2009-02-05  1:37                     ` Justin Mattock
2009-02-04 10:24 ` [Bug #12503] [slab corruption] BUG key_jar: Poison overwritten Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12502] pipe_read oops on sh Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12510] 2.6.29-rc2 dies on startup Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12509] lockdep report. fb_mmap vs sys_mmap2 Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12508] "powerpc/pci: Reserve legacy regions on PCI" broke my G3 Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 21:44   ` Benjamin Herrenschmidt
2009-02-04 21:44     ` Benjamin Herrenschmidt
2009-02-06 18:55     ` Mikael Pettersson
2009-02-06 18:55       ` Mikael Pettersson
2009-02-04 10:24 ` [Bug #12506] Undefined symbols when CONFIG_MFD_PCF50633 is enabled Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12511] WARNING: at drivers/dma/dmaengine.c:352 Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 16:03   ` Dan Williams
2009-02-04 16:03     ` Dan Williams
     [not found]     ` <e9c3a7c20902040803p12ffe0bcrced5249c4b667623-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-05  1:13       ` Rafael J. Wysocki
2009-02-05  1:13         ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12551] end_request: I/O error, dev cciss/c0d0, sector 87435720 Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12518] BUG: using smp_processor_id() in preemptible [00000000] code: dellWirelessCtl/ Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 15:58   ` Alex Riesen
2009-02-04 15:58     ` Alex Riesen
2009-02-04 10:24 ` [Bug #12538] xfs_fsr fails on 2.6.29-rc kernels Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12598] tg3 dead after resume Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-05  0:43   ` Parag Warudkar
2009-02-05  0:43     ` Parag Warudkar
2009-02-05  1:03     ` Jesse Barnes
2009-02-04 10:24 ` [Bug #12574] possible circular locking dependency detected Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12591] NULL pointer dereference in blk_queue_io_stat Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 12:53   ` Jens Axboe
2009-02-04 12:53     ` Jens Axboe
     [not found]     ` <20090204125320.GH30821-tSWWG44O7X1aa/9Udqfwiw@public.gmane.org>
2009-02-05  1:21       ` Rafael J. Wysocki
2009-02-05  1:21         ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12571] Suspend-resume on Dell Latitude D410 newly broken in 2.6.29-rc* Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12600] i915 lockdep warning Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12601] virt-manager broken on 2.6.29-rc2 Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 23:26   ` Stephen Hemminger
2009-02-04 23:26     ` Stephen Hemminger
2009-02-05  1:25     ` Rafael J. Wysocki
2009-02-05  1:25       ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12602] CRED changes causing setuid failures Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 18:09   ` David Smith
2009-02-04 18:09     ` David Smith
     [not found]     ` <4989D9C3.7060408-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2009-02-05  1:15       ` Rafael J. Wysocki
2009-02-05  1:15         ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12599] dri /dev node disappeared with 2.6.29-rc1 Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12604] Commit 31a12666d8f0c22235297e1c1575f82061480029 slows down Berkeley DB Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12606] fb_mmap: circular locking dependency on hibernation Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 14:43   ` Andrey Borzenkov
     [not found]     ` <200902041743.08010.arvidjaar-JGs/UdohzUI@public.gmane.org>
2009-02-05  1:43       ` Rafael J. Wysocki
2009-02-05  1:43         ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12605] Suspend regression, hang after matroxfb Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-05 12:16   ` Eric Sesterhenn
2009-02-05 12:16     ` Eric Sesterhenn
2009-02-05 16:12     ` Rafael J. Wysocki
2009-02-05 16:12       ` Rafael J. Wysocki
     [not found]       ` <200902051712.56407.rjw-KKrjLPT3xs0@public.gmane.org>
2009-02-08 12:39         ` Eric Sesterhenn
2009-02-08 12:39           ` Eric Sesterhenn
2009-02-04 10:24 ` [Bug #12609] v2.6.29-rc2 libata sff 32bit PIO regression Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-05 17:30   ` Hugh Dickins
2009-02-05 17:30     ` Hugh Dickins
     [not found]     ` <Pine.LNX.4.64.0902051723520.1445-XZxpfvf5U/bbmfIwyoSfiQ@public.gmane.org>
2009-02-05 22:54       ` Rafael J. Wysocki
2009-02-05 22:54         ` Rafael J. Wysocki
     [not found]         ` <200902052354.16361.rjw-KKrjLPT3xs0@public.gmane.org>
2009-02-06 23:10           ` Larry Finger
2009-02-06 23:10             ` Larry Finger
     [not found]             ` <498CC380.1070705-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
2009-02-06 23:58               ` Rafael J. Wysocki
2009-02-06 23:58                 ` Rafael J. Wysocki
2009-02-23 16:22                 ` Larry Finger
     [not found]                   ` <49A2CD3B.4090703-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
2009-02-23 22:13                     ` Rafael J. Wysocki
2009-02-23 22:13                       ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12611] kernel BUG at kernel/cgroup.c:398! Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-05  1:02   ` Li Zefan
2009-02-05  1:02     ` Li Zefan
     [not found]     ` <498A3AB7.9060701-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2009-02-05  1:53       ` Rafael J. Wysocki
2009-02-05  1:53         ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12608] 2.6.29-rc powerpc G5 Xorg legacy_mem regression Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 23:48   ` Benjamin Herrenschmidt
2009-02-04 23:48     ` Benjamin Herrenschmidt
2009-02-05 17:23     ` Hugh Dickins
     [not found]       ` <Pine.LNX.4.64.0902051713550.1445-XZxpfvf5U/bbmfIwyoSfiQ@public.gmane.org>
2009-02-05 21:05         ` Benjamin Herrenschmidt
2009-02-05 21:05           ` Benjamin Herrenschmidt
2009-02-05 21:20           ` Hugh Dickins
2009-02-05 21:20             ` Hugh Dickins
2009-02-05 21:45           ` Dave Airlie
2009-02-05 21:45             ` Dave Airlie
     [not found]             ` <21d7e9970902051345h76fb26c1hc0397f6262f70eae-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-06  6:01               ` Benjamin Herrenschmidt
2009-02-06  6:01                 ` Benjamin Herrenschmidt
2009-02-05 22:33           ` Jesse Barnes
     [not found]             ` <200902051433.23294.jbarnes-Y1mF5jBUw70BENJcbMCuUQ@public.gmane.org>
2009-02-05 23:57               ` Benjamin Herrenschmidt
2009-02-05 23:57                 ` Benjamin Herrenschmidt
2009-02-06  5:40               ` Benjamin Herrenschmidt
2009-02-06  5:40                 ` Benjamin Herrenschmidt
2009-02-06 12:56                 ` Hugh Dickins
2009-02-06 12:56                   ` Hugh Dickins
2009-02-06 16:49                   ` Jesse Barnes
     [not found]                     ` <200902060849.45851.jbarnes-Y1mF5jBUw70BENJcbMCuUQ@public.gmane.org>
2009-02-06 22:17                       ` Hugh Dickins
2009-02-06 22:17                         ` Hugh Dickins
     [not found]                         ` <Pine.LNX.4.64.0902062205540.5710-XZxpfvf5U/bbmfIwyoSfiQ@public.gmane.org>
2009-02-06 22:45                           ` Jesse Barnes
2009-02-06 22:45                             ` Jesse Barnes
     [not found]                             ` <200902061445.11379.jbarnes-Y1mF5jBUw70BENJcbMCuUQ@public.gmane.org>
2009-02-07  0:50                               ` Hugh Dickins
2009-02-07  0:50                                 ` Hugh Dickins
2009-02-07  1:47                                 ` Jesse Barnes
2009-02-07  3:05                               ` Benjamin Herrenschmidt
2009-02-07  3:05                                 ` Benjamin Herrenschmidt
2009-02-07 23:15                                 ` Jesse Barnes
2009-02-07 23:15                                   ` Jesse Barnes
     [not found]                   ` <Pine.LNX.4.64.0902061248010.14011-XZxpfvf5U/bbmfIwyoSfiQ@public.gmane.org>
2009-02-07  2:51                     ` Benjamin Herrenschmidt
2009-02-07  2:51                       ` Benjamin Herrenschmidt
2009-02-04 10:24 ` [Bug #12610] sync-Regression in 2.6.28.2? Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12616] boot hang: async vs. kexec Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 16:50   ` Randy Dunlap
2009-02-04 16:50     ` Randy Dunlap
     [not found]     ` <4989C74A.2020402-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2009-02-05  1:26       ` Rafael J. Wysocki
2009-02-05  1:26         ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12615] boot hangs while bringing up gianfar ethernet Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 16:54   ` Ira Snyder
     [not found]     ` <20090204165410.GA21717-lulEs6mt1IksTUYHLfqkUA@public.gmane.org>
2009-02-05  1:23       ` Rafael J. Wysocki
2009-02-05  1:23         ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12617] unable to compile e100 firmware into kernel Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12613] [Suspend regression][DRM, RADEON] Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 22:25   ` etienne
     [not found]     ` <498A15C3.30904-Bf/eaXMDFuuXqB7oj33eUg@public.gmane.org>
2009-02-05  1:18       ` Rafael J. Wysocki
2009-02-05  1:18         ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12618] hackbench [pthread mode] regression with 2.6.29-rc3 Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 10:24 ` [Bug #12621] Resume broken on iBook Rafael J. Wysocki
2009-02-04 10:24   ` Rafael J. Wysocki
2009-02-04 16:24 ` 2.6.29-rc3-git6: Reported regressions from 2.6.28 Linus Torvalds
2009-02-04 16:32   ` Ingo Molnar [this message]
2009-02-04 18:11   ` Norbert Preining
2009-02-04 18:17     ` Linus Torvalds
2009-02-04 18:21       ` Norbert Preining
2009-02-04 18:56       ` Ingo Molnar
2009-02-04 22:22         ` Bron Gondwana
2009-02-05  1:08           ` Ingo Molnar
2009-02-05  1:26             ` Bron Gondwana
2009-02-05  4:45         ` Eric Anholt
2009-02-05 14:51           ` Norbert Preining
2009-02-05 16:56           ` [PATCH] drm, i915: select framebuffer support automatically Ingo Molnar
2009-02-08 11:49             ` Dave Airlie
2009-02-05 17:17           ` 2.6.29-rc3-git6: Reported regressions from 2.6.28 Randy Dunlap
2009-02-05 19:12             ` Ingo Molnar
2009-02-05 19:14               ` Randy Dunlap
2009-02-05 19:20                 ` Ingo Molnar
2009-02-05 19:23                   ` Randy Dunlap
2009-02-05 19:36                     ` Ingo Molnar
2009-02-11  0:33                       ` Eric Anholt
2009-02-05  2:07   ` Rafael J. Wysocki
  -- strict thread matches above, loose matches on Subject: below --
2009-02-04 13:42 Damien Wyart
     [not found] ` <20090204134204.GA8082-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-02-07 14:46   ` Rafael J. Wysocki
2009-02-07 14:46     ` Rafael J. Wysocki
2009-02-04 10:21 Rafael J. Wysocki

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=20090204163213.GA25996@elte.hu \
    --to=mingo@elte.hu \
    --cc=h-shimamoto@ct.jp.nec.com \
    --cc=jens.axboe@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=preining@logic.at \
    --cc=rjw@sisk.pl \
    --cc=torvalds@linux-foundation.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 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.