All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo-X9Un+BFzKDI@public.gmane.org>
To: Damien Wyart <damien.wyart-GANU6spQydw@public.gmane.org>
Cc: "Rafael J. Wysocki" <rjw-KKrjLPT3xs0@public.gmane.org>,
	Linux Kernel Mailing List
	<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Kernel Testers List
	<kernel-testers-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [Bug #12650] Strange load average and ksoftirqd behavior with 2.6.29-rc2-git1
Date: Sun, 15 Feb 2009 10:00:26 +0100	[thread overview]
Message-ID: <20090215090026.GA31147@elte.hu> (raw)
In-Reply-To: <20090215080941.GA2295-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>


* Damien Wyart <damien.wyart-GANU6spQydw@public.gmane.org> wrote:

> Hello,
> 
> > The following bug entry is on the current list of known regressions
> > from 2.6.28.  Please verify if it still should be listed and let me know
> > (either way).
> 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=12650
> > Subject		: Strange load average and ksoftirqd behavior with 2.6.29-rc2-git1
> > Submitter	: Damien Wyart <damien.wyart-GANU6spQydw@public.gmane.org>
> > Date		: 2009-01-20 16:25 (26 days old)
> > References	: http://marc.info/?l=linux-kernel&m=123246937207675&w=2
> 
> The problem is still there in 2.6.29-rc5, nothing has changed. I am
> surprised noone has looked at it as it is trivial to reproduce for me.
> 
> Load average is between 0.30 and 0.60 when the machine is idle, the two
> ksoftirqd threads get a very high total running time in top. This is on
> a P4 machine. On a recent laptop, the load is not as high, but the
> ksoftirqd threads also get a very high total running time.

Mind having a look at this anomaly with the function graph tracer? We are
interested in a representative trace that shows the weird ksoftirq activities.
[ which trace could possibly pinpoint their origin. ]

Here's the tracing quickstart:

   http://redhat.com/~mingo/tip.git/tracing-quickstart.txt

Also attached below. Let me know if you have trouble getting a good trace,
or if any of the steps were non-intuitive or burdensome to you.

Thanks,

	Ingo

------------------------------>

You probably came here because:

- you have a weird latency somewhere that you'd like to debug?
- you have some weird kernel behavior that you'd like to see in detail?
- you are curious how Linux kernel internals look like on a real system?

A good generic tool for that is the built-in function graph tracer (available
in v2.6.28 and later Linux kernels), which will provide system-wide tracing
output of any workload you are interested in.

Sample output:

 # tracer: function_graph
 #
 # CPU DURATION        FUNCTION CALLS
 # |    |   |          |   |   |   |

   1) + 39.757 us   |    }
   1) + 41.593 us   |  }
   1)               |  sys_rt_sigprocmask() {
   1)   0.399 us    |    _spin_lock_irq();
   1)   1.209 us    |  }
   1)               |  sys_read() {
   1)   0.425 us    |    fget_light();
   1)               |    vfs_read() {
   1)               |      rw_verify_area() {
   1)               |        security_file_permission() {
   1)   0.377 us    |          cap_file_permission();
   1)   1.048 us    |        }
   1)   1.803 us    |      }
   1)               |      tty_read() {
   1)   0.476 us    |        tty_paranoia_check();
   1)               |        tty_ldisc_ref_wait() {
   1)               |          tty_ldisc_try() {
   1)   0.365 us    |            _spin_lock_irqsave();
   1)   0.426 us    |            _spin_unlock_irqrestore();
   1)   1.837 us    |          }
   1)   2.544 us    |        }

To get the very latest version of the tracer, pick up the -tip tree (which,
amongst other trees, also includes the latest tracing tree and Linus's latest
upstream -git tree):

   http://people.redhat.com/mingo/tip.git/README

And enable the following .config options:

  CONFIG_DEBUG_KERNEL=y
  CONFIG_FUNCTION_TRACER=y
  CONFIG_FUNCTION_GRAPH_TRACER=y
  CONFIG_DYNAMIC_FTRACE=y

Boot into the new kernel and mount debugfs (if you dont have it mounted
already):

  mkdir /debug
  mount -t debugfs nodev /debug

That's all - now you can use the tracer. There's no user-space utilities
needed, everything is built into the kernel and all functionality can
be accessed via the /debug/tracing/* special files.

For example, the following commands in a shell prompt will capture a
1-second trace of whatever happens on your box right now:

  cd /debug/tracing/
  echo function_graph_tracer > current_tracer
  echo 1 > tracing_enabled
  sleep 1
  echo 0 > tracing_enabled
  cat trace > /tmp/trace.txt

/tmp/trace.txt will contain the trace. If you are trying to debug a bug,
send that file to kernel developers :)

Tracing can be expensive, especially if every single kernel function is
traced (which is the default).

To solve that problem you can limit the scope of traced functions via the
function filter:

  echo ""              > set_ftrace_filter        # clear all previous filters
  echo "schedule*"    >> set_ftrace_filter        # trace schedule functions
  echo "*switch_to*"  >> set_ftrace_filter        # trace context switches
  echo "*wake_up*"    >> set_ftrace_filter        # trace task wakeups

Note that if you want the rules to be additive then filters have to be
appended via '>>'. Using '>' will override all previous filters again.

Use "cat set_ftrace_filter" to see the currently traced functions. (if the
file is empty then it means 'all') Use "cat available_filter_functions" for
all kernel functions that can be traced. On a typical system there will
be tens of thousands to pick from (!).

Besides the default output you can find additional attributes in the
'trace_options' file. For example:

  echo funcgraph-proc > trace_options

Will instruct the tracer to output which process/PID generated a trace
entry:

  0)   bash-2623    |               |  sys_dup2() {
  0)   bash-2623    |               |    sys_dup3() {
  0)   bash-2623    |   0.262 us    |      _spin_lock();
  0)   bash-2623    |   0.290 us    |      expand_files();
  0)   bash-2623    |               |      filp_close() {
  0)   bash-2623    |   0.260 us    |        dnotify_flush();
  0)   bash-2623    |   0.305 us    |        locks_remove_posix();
  0)   bash-2623    |               |        fput() {
  0)   bash-2623    |               |          __fput() {
  0)   bash-2623    |   0.393 us    |            _cond_resched();

Have fun tracing, but beware, if there's even just a little bit of
a kernel developer in you then it can be highly addictive! ;-)

	Ingo

WARNING: multiple messages have this Message-ID (diff)
From: Ingo Molnar <mingo@elte.hu>
To: Damien Wyart <damien.wyart@free.fr>
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 #12650] Strange load average and ksoftirqd behavior with 2.6.29-rc2-git1
Date: Sun, 15 Feb 2009 10:00:26 +0100	[thread overview]
Message-ID: <20090215090026.GA31147@elte.hu> (raw)
In-Reply-To: <20090215080941.GA2295@localhost.localdomain>


* Damien Wyart <damien.wyart@free.fr> wrote:

> Hello,
> 
> > The following bug entry is on the current list of known regressions
> > from 2.6.28.  Please verify if it still should be listed and let me know
> > (either way).
> 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=12650
> > Subject		: Strange load average and ksoftirqd behavior with 2.6.29-rc2-git1
> > Submitter	: Damien Wyart <damien.wyart@free.fr>
> > Date		: 2009-01-20 16:25 (26 days old)
> > References	: http://marc.info/?l=linux-kernel&m=123246937207675&w=2
> 
> The problem is still there in 2.6.29-rc5, nothing has changed. I am
> surprised noone has looked at it as it is trivial to reproduce for me.
> 
> Load average is between 0.30 and 0.60 when the machine is idle, the two
> ksoftirqd threads get a very high total running time in top. This is on
> a P4 machine. On a recent laptop, the load is not as high, but the
> ksoftirqd threads also get a very high total running time.

Mind having a look at this anomaly with the function graph tracer? We are
interested in a representative trace that shows the weird ksoftirq activities.
[ which trace could possibly pinpoint their origin. ]

Here's the tracing quickstart:

   http://redhat.com/~mingo/tip.git/tracing-quickstart.txt

Also attached below. Let me know if you have trouble getting a good trace,
or if any of the steps were non-intuitive or burdensome to you.

Thanks,

	Ingo

------------------------------>

You probably came here because:

- you have a weird latency somewhere that you'd like to debug?
- you have some weird kernel behavior that you'd like to see in detail?
- you are curious how Linux kernel internals look like on a real system?

A good generic tool for that is the built-in function graph tracer (available
in v2.6.28 and later Linux kernels), which will provide system-wide tracing
output of any workload you are interested in.

Sample output:

 # tracer: function_graph
 #
 # CPU DURATION        FUNCTION CALLS
 # |    |   |          |   |   |   |

   1) + 39.757 us   |    }
   1) + 41.593 us   |  }
   1)               |  sys_rt_sigprocmask() {
   1)   0.399 us    |    _spin_lock_irq();
   1)   1.209 us    |  }
   1)               |  sys_read() {
   1)   0.425 us    |    fget_light();
   1)               |    vfs_read() {
   1)               |      rw_verify_area() {
   1)               |        security_file_permission() {
   1)   0.377 us    |          cap_file_permission();
   1)   1.048 us    |        }
   1)   1.803 us    |      }
   1)               |      tty_read() {
   1)   0.476 us    |        tty_paranoia_check();
   1)               |        tty_ldisc_ref_wait() {
   1)               |          tty_ldisc_try() {
   1)   0.365 us    |            _spin_lock_irqsave();
   1)   0.426 us    |            _spin_unlock_irqrestore();
   1)   1.837 us    |          }
   1)   2.544 us    |        }

To get the very latest version of the tracer, pick up the -tip tree (which,
amongst other trees, also includes the latest tracing tree and Linus's latest
upstream -git tree):

   http://people.redhat.com/mingo/tip.git/README

And enable the following .config options:

  CONFIG_DEBUG_KERNEL=y
  CONFIG_FUNCTION_TRACER=y
  CONFIG_FUNCTION_GRAPH_TRACER=y
  CONFIG_DYNAMIC_FTRACE=y

Boot into the new kernel and mount debugfs (if you dont have it mounted
already):

  mkdir /debug
  mount -t debugfs nodev /debug

That's all - now you can use the tracer. There's no user-space utilities
needed, everything is built into the kernel and all functionality can
be accessed via the /debug/tracing/* special files.

For example, the following commands in a shell prompt will capture a
1-second trace of whatever happens on your box right now:

  cd /debug/tracing/
  echo function_graph_tracer > current_tracer
  echo 1 > tracing_enabled
  sleep 1
  echo 0 > tracing_enabled
  cat trace > /tmp/trace.txt

/tmp/trace.txt will contain the trace. If you are trying to debug a bug,
send that file to kernel developers :)

Tracing can be expensive, especially if every single kernel function is
traced (which is the default).

To solve that problem you can limit the scope of traced functions via the
function filter:

  echo ""              > set_ftrace_filter        # clear all previous filters
  echo "schedule*"    >> set_ftrace_filter        # trace schedule functions
  echo "*switch_to*"  >> set_ftrace_filter        # trace context switches
  echo "*wake_up*"    >> set_ftrace_filter        # trace task wakeups

Note that if you want the rules to be additive then filters have to be
appended via '>>'. Using '>' will override all previous filters again.

Use "cat set_ftrace_filter" to see the currently traced functions. (if the
file is empty then it means 'all') Use "cat available_filter_functions" for
all kernel functions that can be traced. On a typical system there will
be tens of thousands to pick from (!).

Besides the default output you can find additional attributes in the
'trace_options' file. For example:

  echo funcgraph-proc > trace_options

Will instruct the tracer to output which process/PID generated a trace
entry:

  0)   bash-2623    |               |  sys_dup2() {
  0)   bash-2623    |               |    sys_dup3() {
  0)   bash-2623    |   0.262 us    |      _spin_lock();
  0)   bash-2623    |   0.290 us    |      expand_files();
  0)   bash-2623    |               |      filp_close() {
  0)   bash-2623    |   0.260 us    |        dnotify_flush();
  0)   bash-2623    |   0.305 us    |        locks_remove_posix();
  0)   bash-2623    |               |        fput() {
  0)   bash-2623    |               |          __fput() {
  0)   bash-2623    |   0.393 us    |            _cond_resched();

Have fun tracing, but beware, if there's even just a little bit of
a kernel developer in you then it can be highly addictive! ;-)

	Ingo

  parent reply	other threads:[~2009-02-15  9:00 UTC|newest]

Thread overview: 242+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-02-14 20:35 2.6.29-rc5: Reported regressions from 2.6.28 Rafael J. Wysocki
2009-02-14 20:35 ` [Bug #12414] iwl4965 cannot use "ap auto" on latest 2.6.28/29? Rafael J. Wysocki
2009-02-14 20:35   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12418] Repeated ioctl(4, 0x40046445, ..) loop in glxgears Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12444] X hangs following switch from radeonfb console - Bisected Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-16 17:52   ` Graham Murray
2009-02-16 21:52     ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12490] ath5k related kernel panic in 2.6.29-rc1 Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12419] possible circular locking dependency on i915 dma Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-16  3:50   ` Wang Chen
2009-02-16  3:50     ` Wang Chen
2009-02-14 20:38 ` [Bug #12496] swsusp cannot find resume device (sometimes) Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-15  0:05   ` Arjan van de Ven
2009-02-15  0:05     ` Arjan van de Ven
     [not found]     ` <20090214160542.1c668398-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2009-02-15 14:23       ` Rafael J. Wysocki
2009-02-15 14:23         ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12494] Sony backlight regression from 2.6.28 to 29-rc Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-17 10:51   ` Norbert Preining
2009-02-17 10:51     ` Norbert Preining
2009-02-14 20:38 ` [Bug #12497] new barrier warnings in 2.6.29-rc1 Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12499] Problem with using bluetooth adaper connected to usb port Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12491] i915 lockdep warning Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12501] build bug in eeepc-laptop.c Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12502] pipe_read oops on sh Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-15  0:23   ` Adrian McMenamin
2009-02-15  0:23     ` Adrian McMenamin
     [not found]     ` <8b67d60902141623k449dc769n9fd6bf180d3267d3-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-02-15 14:27       ` Rafael J. Wysocki
2009-02-15 14:27         ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12510] 2.6.29-rc2 dies on startup Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-16 21:02   ` Ferenc Wagner
2009-02-16 21:02     ` Ferenc Wagner
2009-02-16 21:12     ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12551] end_request: I/O error, dev cciss/c0d0, sector 87435720 Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12571] Suspend-resume on Dell Latitude D410 newly broken in 2.6.29-rc* Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12609] v2.6.29-rc2 libata sff 32bit PIO regression Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-15  4:20   ` Larry Finger
2009-02-15  4:20     ` Larry Finger
     [not found]     ` <499797FD.5070701-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
2009-02-15  8:10       ` Jeff Garzik
2009-02-15  8:10         ` Jeff Garzik
     [not found]         ` <4997CDDC.1020103-o2qLIJkoznsdnm+yROfE0A@public.gmane.org>
2009-02-15 12:05           ` Sergei Shtylyov
2009-02-15 12:05             ` Sergei Shtylyov
2009-02-15 16:48           ` Hugh Dickins
2009-02-15 16:48             ` Hugh Dickins
2009-02-14 20:38 ` [Bug #12574] possible circular locking dependency detected Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12610] sync-Regression in 2.6.28.2? Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-21 17:56   ` Theodore Tso
2009-02-21 17:56     ` Theodore Tso
     [not found]     ` <20090221175646.GB3750-3s7WtUTddSA@public.gmane.org>
2009-02-22 10:02       ` Rafael J. Wysocki
2009-02-22 10:02         ` Rafael J. Wysocki
     [not found]         ` <200902221102.10579.rjw-KKrjLPT3xs0@public.gmane.org>
2009-02-23  4:35           ` Greg KH
2009-02-23  4:35             ` Greg KH
     [not found]             ` <20090223043536.GC19687-l3A5Bk7waGM@public.gmane.org>
2009-02-23  5:37               ` Theodore Tso
2009-02-23  5:37                 ` Theodore Tso
     [not found]                 ` <20090223053736.GC19739-3s7WtUTddSA@public.gmane.org>
2009-02-23 16:54                   ` [stable] " Greg KH
2009-02-23 16:54                     ` Greg KH
2009-02-14 20:38 ` [Bug #12613] [Suspend regression][DRM, RADEON] Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
     [not found]   ` <4997E7D7.60205@numericable.fr>
     [not found]     ` <4997E7D7.60205-Bf/eaXMDFuuXqB7oj33eUg@public.gmane.org>
2009-02-15 10:20       ` etienne
2009-02-15 10:20         ` etienne
2009-02-14 20:38 ` [Bug #12615] boot hangs while bringing up gianfar ethernet Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-15 14:42   ` Peter Korsgaard
2009-02-15 14:42     ` Peter Korsgaard
     [not found]     ` <8763jbep7p.fsf-uXGAPMMVk8amE9MCos8gUmSdvHPH+/yF@public.gmane.org>
2009-02-15 21:08       ` Rafael J. Wysocki
2009-02-15 21:08         ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12650] Strange load average and ksoftirqd behavior with 2.6.29-rc2-git1 Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-15  8:09   ` Damien Wyart
     [not found]     ` <20090215080941.GA2295-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-02-15  9:00       ` Ingo Molnar [this message]
2009-02-15  9:00         ` Ingo Molnar
     [not found]         ` <20090215090026.GA31147-X9Un+BFzKDI@public.gmane.org>
2009-02-15  9:51           ` Damien Wyart
2009-02-15  9:51             ` Damien Wyart
     [not found]             ` <20090215095128.GA3234-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-02-15 10:13               ` Ingo Molnar
2009-02-15 10:13                 ` Ingo Molnar
     [not found]                 ` <20090215101351.GA23274-X9Un+BFzKDI@public.gmane.org>
2009-02-15 10:34                   ` Damien Wyart
2009-02-15 10:34                     ` Damien Wyart
     [not found]                     ` <20090215103445.GA2335-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-02-15 10:41                       ` Damien Wyart
2009-02-15 10:41                         ` Damien Wyart
2009-02-15 10:42                       ` Damien Wyart
2009-02-15 10:42                         ` Damien Wyart
     [not found]                         ` <20090215104245.GA2320-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-02-15 10:43                           ` Damien Wyart
2009-02-15 10:43                             ` Damien Wyart
2009-02-15 11:01                       ` Ingo Molnar
2009-02-15 11:01                         ` Ingo Molnar
     [not found]                         ` <20090215110104.GB31351-X9Un+BFzKDI@public.gmane.org>
2009-02-15 14:06                           ` Frederic Weisbecker
2009-02-15 14:06                             ` Frederic Weisbecker
2009-02-15 18:03                           ` Damien Wyart
2009-02-15 18:03                             ` Damien Wyart
     [not found]                             ` <20090215180355.GA2273-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-02-15 19:18                               ` Damien Wyart
2009-02-15 19:18                                 ` Damien Wyart
2009-02-15 19:31                               ` Ingo Molnar
2009-02-15 19:31                                 ` Ingo Molnar
     [not found]                                 ` <20090215193102.GA16873-X9Un+BFzKDI@public.gmane.org>
2009-02-16  8:42                                   ` Damien Wyart
2009-02-16  8:42                                     ` Damien Wyart
     [not found]                                     ` <20090216084223.GA2641-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-02-16  9:21                                       ` Ingo Molnar
2009-02-16  9:21                                         ` Ingo Molnar
     [not found]                                         ` <20090216092100.GH6182-X9Un+BFzKDI@public.gmane.org>
2009-02-16 10:49                                           ` Damien Wyart
2009-02-16 10:49                                             ` Damien Wyart
2009-02-16  9:25                                       ` Ingo Molnar
2009-02-16  9:25                                         ` Ingo Molnar
2009-02-16  9:27                                       ` Ingo Molnar
2009-02-16  9:27                                         ` Ingo Molnar
2009-02-16  9:32                                       ` Ingo Molnar
2009-02-16  9:32                                         ` Ingo Molnar
2009-02-16  9:50                                       ` Ingo Molnar
2009-02-16  9:50                                         ` Ingo Molnar
     [not found]                                         ` <20090216095059.GL6182-X9Un+BFzKDI@public.gmane.org>
2009-02-16 11:56                                           ` Damien Wyart
2009-02-16 11:56                                             ` Damien Wyart
     [not found]                                             ` <87hc2u61e9.fsf-GANU6spQydw@public.gmane.org>
2009-02-16 12:26                                               ` Ingo Molnar
2009-02-16 12:26                                                 ` Ingo Molnar
2009-02-16 13:02                                                 ` Damien Wyart
2009-02-16 13:02                                                   ` Damien Wyart
     [not found]                                                   ` <87ljs6pmao.fsf-GANU6spQydw@public.gmane.org>
2009-02-16 13:21                                                     ` Ingo Molnar
2009-02-16 13:21                                                       ` Ingo Molnar
     [not found]                                                       ` <20090216132151.GA17996-X9Un+BFzKDI@public.gmane.org>
2009-02-16 16:06                                                         ` Paul E. McKenney
2009-02-16 16:06                                                           ` Paul E. McKenney
     [not found]                                                           ` <20090216160613.GA6785-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2009-02-16 18:56                                                             ` Paul E. McKenney
2009-02-16 18:56                                                               ` Paul E. McKenney
     [not found]                                                               ` <20090216185616.GB6785-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2009-02-16 19:08                                                                 ` Frederic Weisbecker
2009-02-16 19:08                                                                   ` Frederic Weisbecker
2009-02-16 20:02                                                                 ` Frederic Weisbecker
2009-02-16 20:02                                                                   ` Frederic Weisbecker
2009-02-16 21:31                                                                   ` Paul E. McKenney
2009-02-16 21:31                                                                     ` Paul E. McKenney
2009-02-16 20:09                                                                 ` Ingo Molnar
2009-02-16 20:09                                                                   ` Ingo Molnar
     [not found]                                                                   ` <20090216200923.GA28938-X9Un+BFzKDI@public.gmane.org>
2009-02-16 22:39                                                                     ` Paul E. McKenney
2009-02-16 22:39                                                                       ` Paul E. McKenney
     [not found]                                                                       ` <20090216223944.GF6785-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2009-02-16 22:51                                                                         ` Paul E. McKenney
2009-02-16 22:51                                                                           ` Paul E. McKenney
     [not found]                                                                           ` <20090216225108.GA15904-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2009-02-17  9:46                                                                             ` Ingo Molnar
2009-02-17  9:46                                                                               ` Ingo Molnar
     [not found]                                                                               ` <20090217094657.GA1845-X9Un+BFzKDI@public.gmane.org>
2009-02-17 14:01                                                                                 ` Paul E. McKenney
2009-02-17 14:01                                                                                   ` Paul E. McKenney
     [not found]                                                                                   ` <20090217140130.GA6761-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2009-02-17 15:39                                                                                     ` Damien Wyart
2009-02-17 15:39                                                                                       ` Damien Wyart
     [not found]                                                                                       ` <20090217153925.GA2308-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-02-17 16:05                                                                                         ` Paul E. McKenney
2009-02-17 16:05                                                                                           ` Paul E. McKenney
2009-02-17 21:48                                                                                         ` Ingo Molnar
2009-02-17 21:48                                                                                           ` Ingo Molnar
2009-02-17  6:11                                                                         ` Damien Wyart
2009-02-17  6:11                                                                           ` Damien Wyart
     [not found]                                                                           ` <20090217061142.GA5316-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-02-17 15:11                                                                             ` Paul E. McKenney
2009-02-17 15:11                                                                               ` Paul E. McKenney
2009-02-17  4:34                                                                       ` Frederic Weisbecker
2009-02-17 15:10                                                                         ` Paul E. McKenney
2009-02-17 15:10                                                                           ` Paul E. McKenney
     [not found]                                                                           ` <20090217151046.GB6761-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2009-02-17 16:00                                                                             ` Frederic Weisbecker
2009-02-17 16:00                                                                               ` Frederic Weisbecker
2009-02-17 22:37                                                                             ` Frederic Weisbecker
2009-02-17 22:37                                                                               ` Frederic Weisbecker
2009-02-17 22:48                                                                               ` Paul E. McKenney
2009-02-17 22:48                                                                                 ` Paul E. McKenney
     [not found]                                                                                 ` <20090217224826.GO6761-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2009-02-18  0:38                                                                                   ` Ingo Molnar
2009-02-18  0:38                                                                                     ` Ingo Molnar
     [not found]                                                                                     ` <20090218003801.GD25856-X9Un+BFzKDI@public.gmane.org>
2009-02-18  1:02                                                                                       ` Paul E. McKenney
2009-02-18  1:02                                                                                         ` Paul E. McKenney
2009-02-16 20:44                                                                 ` Damien Wyart
2009-02-16 20:44                                                                   ` Damien Wyart
2009-02-15 10:12           ` Christian Kujau
2009-02-15 10:12             ` Christian Kujau
     [not found]             ` <alpine.DEB.2.01.0902150210140.25613-uKsf7x9sgtqQ/Pez2Lbyp4QuADTiUCJX@public.gmane.org>
2009-02-15 10:54               ` Ingo Molnar
2009-02-15 10:54                 ` Ingo Molnar
2009-02-14 20:38 ` [Bug #12617] unable to compile e100 firmware into kernel Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-15 17:38   ` David Woodhouse
2009-02-15 17:38     ` David Woodhouse
2009-02-15 19:58     ` Andrey Borzenkov
     [not found]       ` <200902152259.00244.arvidjaar-JGs/UdohzUI@public.gmane.org>
2009-02-15 21:09         ` Rafael J. Wysocki
2009-02-15 21:09           ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12618] hackbench [pthread mode] regression with 2.6.29-rc3 Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12659] Failure to resume two Sandisk USB flash drives attached to a Belkin USB Busport Mobile (F5U022) Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12668] USB flash disk surprise disconnect Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12660] Linux 2.6.28.3 freezing on a 32-bits x86 Thinkpad T43p Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 23:29   ` Mathieu Desnoyers
2009-02-14 20:38 ` [Bug #12663] Commit 8c7e58e690ae60ab4215b025f433ed4af261e103 breaks resume Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12681] s2ram: fails to wake up on Acer Extensa 4220 (SMP disabled) Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12670] BUG: unable to handle kernel paging request at pin_to_kill+0x21 Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12680] Not having a VIA PadLock hardware incurs a long delay in probing on modules insertion attempt Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12671] uvc_status_cleanup(): undefined reference to `input_unregister_device' Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12706] Oopses and ACPI problems (Linus 2.6.29-rc4) Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-14 20:38 ` [Bug #12705] X200: Brightness broken since 2.6.29-rc4-58-g4c098bc Rafael J. Wysocki
2009-02-14 20:38   ` Rafael J. Wysocki
2009-02-15 13:43   ` Matthew Garrett
2009-02-15 13:43     ` Matthew Garrett
     [not found]     ` <20090215134347.GB21670-1xO5oi07KQx4cg9Nei1l7Q@public.gmane.org>
2009-02-15 14:37       ` Rafael J. Wysocki
2009-02-15 14:37         ` Rafael J. Wysocki
2009-02-17 23:05       ` Eric Anholt
2009-02-17 23:05         ` Eric Anholt
2009-02-17 23:13         ` Matthew Garrett
2009-02-17 23:13           ` Matthew Garrett
     [not found]           ` <20090217231313.GA2654-1xO5oi07KQx4cg9Nei1l7Q@public.gmane.org>
2009-02-17 23:23             ` Jesse Barnes
2009-02-17 23:23               ` Jesse Barnes
2009-02-18  9:36               ` Nico Schottelius
2009-02-13  9:33                 ` Nico Schottelius
2009-02-13  9:40                   ` Nico Schottelius
2009-02-13 13:43                     ` Matthew Garrett
2009-03-10  2:28                     ` Eric Anholt
2009-03-10  5:38                       ` Nico Schottelius
2009-02-13  9:42                   ` Ingo Molnar
2009-02-13 18:05                     ` Len Brown
2009-02-16  9:06                       ` ZhangRui
2009-02-16 10:58                         ` Nico Schottelius
2009-02-16 13:13                           ` Nico Schottelius
2009-02-16 21:40                             ` Norbert Preining
2009-02-16 15:54                       ` Nico Schottelius
2009-02-19  9:01                         ` Nico Schottelius
2009-02-19  9:01                           ` Nico Schottelius
     [not found]                         ` <20090218093602.GA7722-CwvJMKsI4x9IWicycGkJrnB8g6S6LqdP2LY78lusg7I@public.gmane.org>
     [not found]                           ` <20090216155434.GA5503-CwvJMKsI4x9IWicycGkJrnB8g6S6LqdP2LY78lusg7I@public.gmane.org>
2009-02-19  9:01                             ` Nico Schottelius
2009-02-16  7:29 ` 2.6.29-rc5: Reported regressions from 2.6.28 Jarek Poplawski
2009-02-16 21:11   ` Rafael J. Wysocki
2009-02-16 21:11   ` Rafael J. Wysocki
2009-02-16  7:29 ` Jarek Poplawski
  -- strict thread matches above, loose matches on Subject: below --
2009-02-08 19:05 2.6.29-rc4: " Rafael J. Wysocki
2009-02-08 19:21 ` [Bug #12650] Strange load average and ksoftirqd behavior with 2.6.29-rc2-git1 Rafael J. Wysocki
2009-02-08 19: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=20090215090026.GA31147@elte.hu \
    --to=mingo-x9un+bfzkdi@public.gmane.org \
    --cc=damien.wyart-GANU6spQydw@public.gmane.org \
    --cc=kernel-testers-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=rjw-KKrjLPT3xs0@public.gmane.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.