From: Alan Cox <alan@lxorguk.ukuu.org.uk>
To: Matthew Garrett <mjg59@srcf.ucam.org>
Cc: Peter Zijlstra <peterz@infradead.org>,
Paul@smtp1.linux-foundation.org,
LKML <linux-kernel@vger.kernel.org>,
Florian Mickler <florian@mickler.org>,
Linux@smtp1.linux-foundation.org, felipe.balbi@nokia.com,
List <linux-omap@vger.kernel.org>,
Linux PM <linux-pm@lists.linux-foundation.org>
Subject: Re: [PATCH 0/8] Suspend block api (version 8)
Date: Thu, 27 May 2010 17:41:31 +0100 [thread overview]
Message-ID: <20100527174131.18fd1c72@lxorguk.ukuu.org.uk> (raw)
In-Reply-To: <20100527160714.GB31937@srcf.ucam.org>
On Thu, 27 May 2010 17:07:14 +0100
Matthew Garrett <mjg59@srcf.ucam.org> wrote:
> On Thu, May 27, 2010 at 04:05:43PM +0100, Alan Cox wrote:
> > > Now, if the user is playing this game, you want it to be scheduled. If
> > > the user has put down their phone and the screen lock has kicked in, you
> > > don't want it to be scheduled. So we could imagine some sort of cgroup
> > > that contains untrusted tasks - when the session is active we set a flag
> >
> > I would hope not, because I'd rather prefer my app that used the screen
> > to get the chance to save important data on what it was doing
> > irrespective of the screen blank: "I have an elegant proof for this
> > problem but my battery has gone flat"
>
> Perhaps set after callbacks are made. But given that the approach
> doesn't work anyway...
Which approach doesn't work, and why ?
> > What is the problem here - your device driver for the display can block
> > tasks it doesn't want to use the display.
>
> It's still racy. Going back to my example without any of the suspend
> blocking code, but using a network socket rather than an input device:
>
> int input = socket(AF_INET, SOCK_STREAM|SOCK_NONBLOCK, 0);
> char foo;
> struct sockaddr addr;
> connect (input, &addr, sizeof(addr))
> while (1) {
> if (read(input, &foo, 1) > 0) {
> (do something)
> } else {
> (draw bouncing cows and clouds and tractor beams briefly)
> }
> }
>
> A network packet arrives while we're drawing. Before we finish drawing,
> the policy timeout expires and the screen turns off.
Which is correct for a badly behaved application. You said you wanted to
constrain it. You've done so. Now I am not sure why such a "timeout"
would expire in the example as the task is clearly busy when drawing, or
is talking to someone else who is in turn busy. Someone somewhere is
actually drawing be it a driver or app code.
For a well behaved application you are drawing so you are running
drawing stuff so why would you suspend. The app has said it has a
latency constraint that suspend cannot meet, or has a device open that
cannot meet the constraints in suspend.
You also have the socket open so you can meaningfully extract resource
constraint information from that fact.
See it's not the read() that matters, it's the connect and the close.
If your policy for a well behaved application is 'thou shalt not
suspend in a way that breaks its networking' then for a well behaving app
once I connect the socket we cannot suspend that app until such point as
the app closes the socket. At any other point we will break the
connection. Whether that is desirable is a policy question and you get to
pick how much you choose to trust an app and how you interpret the
information in your cpufreq and suspend drivers.
If you have wake-on-lan then the network stack might be smarter and
choose to express itself as
'the constraint is C6 unless the input queue is empty in which
case suspend is ok as I have WoL and my network routing is such
that I can prove that interface will be used'
In truth I doubt much hardware can make such an inference but some phones
probably can. On the other hand for /dev/input/foo you can make the
inference very nicely thank you.
Again wake on lan information does not belong in the application !
next prev parent reply other threads:[~2010-05-27 16:41 UTC|newest]
Thread overview: 551+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1274482015-30899-1-git-send-email-arve@android.com>
2010-05-21 22:46 ` [PATCH 1/8] PM: Opportunistic suspend support Arve Hjønnevåg
[not found] ` <1274482015-30899-2-git-send-email-arve@android.com>
2010-05-21 22:46 ` [PATCH 2/8] PM: suspend_block: Add driver to access suspend blockers from user-space Arve Hjønnevåg
2010-05-22 2:47 ` [PATCH 1/8] PM: Opportunistic suspend support Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005212226180.20028-100000@netrider.rowland.org>
2010-05-25 1:05 ` Arve Hjønnevåg
[not found] ` <1274482015-30899-3-git-send-email-arve@android.com>
2010-05-21 22:46 ` [PATCH 3/8] PM: suspend_block: Abort task freezing if a suspend_blocker is active Arve Hjønnevåg
[not found] ` <1274482015-30899-4-git-send-email-arve@android.com>
2010-05-21 22:46 ` [PATCH 4/8] PM: suspend_block: Add debugfs file Arve Hjønnevåg
[not found] ` <1274482015-30899-5-git-send-email-arve@android.com>
2010-05-21 22:46 ` [PATCH 5/8] PM: suspend_block: Add suspend_blocker stats Arve Hjønnevåg
[not found] ` <1274482015-30899-6-git-send-email-arve@android.com>
2010-05-21 22:46 ` [PATCH 6/8] PM: Add suspend blocking work Arve Hjønnevåg
[not found] ` <1274482015-30899-7-git-send-email-arve@android.com>
2010-05-21 22:46 ` [PATCH 7/8] Input: Block suspend while event queue is not empty Arve Hjønnevåg
[not found] ` <1274482015-30899-8-git-send-email-arve@android.com>
2010-05-21 22:46 ` [PATCH 8/8] power_supply: Block suspend while power supply change notifications are pending Arve Hjønnevåg
2010-05-26 8:43 ` [PATCH 2/8] PM: suspend_block: Add driver to access suspend blockers from user-space Peter Zijlstra
[not found] ` <1274863428.5882.4860.camel@twins>
2010-05-26 10:47 ` Arve Hjønnevåg
[not found] ` <AANLkTimTnzK1ByG2bE2gGjINxD_Pbvez7PFHo7Kzo9yk@mail.gmail.com>
2010-05-26 10:50 ` Peter Zijlstra
2010-05-26 10:51 ` Florian Mickler
[not found] ` <20100526125136.53f2dc82@schatten.dmk.lab>
2010-05-26 11:06 ` Peter Zijlstra
[not found] ` <1274871005.5882.5315.camel@twins>
2010-05-26 23:13 ` Arve Hjønnevåg
2010-05-26 21:57 ` Rafael J. Wysocki
2010-05-24 0:46 ` [PATCH 0/8] Suspend block api (version 8) Rafael J. Wysocki
[not found] ` <201005240246.55043.rjw@sisk.pl>
2010-05-24 4:32 ` Felipe Balbi
2010-05-24 18:49 ` Rafael J. Wysocki
[not found] ` <201005242049.18920.rjw@sisk.pl>
2010-05-24 22:51 ` Kevin Hilman
[not found] ` <87wrusvrqe.fsf@deeprootsystems.com>
2010-05-24 23:38 ` Rafael J. Wysocki
[not found] ` <201005250138.16293.rjw@sisk.pl>
2010-05-26 8:47 ` Peter Zijlstra
[not found] ` <1274863655.5882.4875.camel@twins>
2010-05-26 9:41 ` Arve Hjønnevåg
[not found] ` <AANLkTinN6MKvCEhPkbYQRD2gu-mGXdNW9asRsTuKN3_Y@mail.gmail.com>
2010-05-26 9:45 ` Peter Zijlstra
[not found] ` <1274867106.5882.5090.camel@twins>
2010-05-26 9:49 ` Brian Swetland
2010-05-26 10:02 ` Florian Mickler
2010-05-26 10:06 ` Arve Hjønnevåg
[not found] ` <AANLkTiksR3YozbBH0Iv5kNsQkEGKCH1APCvn_s6LkjV9@mail.gmail.com>
2010-05-26 10:09 ` Peter Zijlstra
[not found] ` <1274868593.5882.5185.camel@twins>
2010-05-26 10:25 ` Arve Hjønnevåg
[not found] ` <AANLkTinuxCbeBmxIR7b_1OtrqQYJCamiDZJbnNTih1Fb@mail.gmail.com>
2010-05-26 10:32 ` Peter Zijlstra
[not found] ` <1274869966.5882.5262.camel@twins>
2010-05-26 10:40 ` Brian Swetland
2010-05-26 10:40 ` Arve Hjønnevåg
[not found] ` <AANLkTikRMBkoFxgaKsxMJ2lOMomTXpiHJDk3rVt0EtwM@mail.gmail.com>
2010-05-26 10:49 ` Peter Zijlstra
[not found] ` <1274870970.5882.5311.camel@twins>
2010-05-26 10:53 ` Arve Hjønnevåg
[not found] ` <AANLkTinlxsokwralwRAL9_YRQ7-SZUSvrGHTlRISA9bC@mail.gmail.com>
2010-05-26 11:12 ` Peter Zijlstra
2010-05-26 11:23 ` Vitaly Wool
[not found] ` <1274872357.27810.16.camel@twins>
2010-05-26 12:35 ` Alan Cox
2010-05-26 12:53 ` Peter Zijlstra
[not found] ` <1274878396.27810.334.camel@twins>
2010-05-26 20:18 ` Zygo Blaxell
2010-05-26 22:52 ` Arve Hjønnevåg
[not found] ` <20100526120242.5c9b73ad@schatten.dmk.lab>
2010-05-26 10:08 ` Peter Zijlstra
[not found] ` <1274868484.5882.5176.camel@twins>
2010-05-26 10:19 ` Florian Mickler
2010-05-26 11:18 ` Vitaly Wool
[not found] ` <AANLkTim4021cTnhVZrQpefq1MG-eEPOFLDRO-XDepHb4@mail.gmail.com>
2010-05-26 11:37 ` Florian Mickler
[not found] ` <20100526133721.602633b2@schatten.dmk.lab>
2010-05-26 12:01 ` Vitaly Wool
[not found] ` <AANLkTikzgaOFdQKess4E-D86OLPOzxP3dWiDkU_UR0ri@mail.gmail.com>
2010-05-26 12:24 ` Florian Mickler
[not found] ` <20100526142430.327ccbc4@schatten.dmk.lab>
2010-05-26 12:29 ` Felipe Balbi
[not found] ` <20100526122932.GB1990@nokia.com>
2010-05-26 12:33 ` Florian Mickler
[not found] ` <20100526143323.7c6f8705@schatten.dmk.lab>
2010-05-26 12:35 ` Felipe Balbi
2010-05-26 12:41 ` Peter Zijlstra
[not found] ` <20100526123532.GA2629@nokia.com>
2010-05-26 12:54 ` Florian Mickler
2010-05-26 13:06 ` Peter Zijlstra
2010-05-26 13:19 ` Alan Cox
[not found] ` <20100526141942.2a6b94ff@lxorguk.ukuu.org.uk>
2010-05-26 13:39 ` Florian Mickler
2010-05-27 8:58 ` Felipe Contreras
[not found] ` <1274877689.27810.287.camel@twins>
2010-05-26 13:03 ` Florian Mickler
[not found] ` <20100526150348.54ea29c7@schatten.dmk.lab>
2010-05-26 13:07 ` Peter Zijlstra
[not found] ` <1274879247.27810.390.camel@twins>
2010-05-26 13:30 ` Florian Mickler
2010-05-26 12:55 ` Vitaly Wool
2010-05-26 13:16 ` Alan Cox
[not found] ` <AANLkTikQmd8IxZlFELUGmVJh59DpXrqIS_yjmMLuaj0D@mail.gmail.com>
2010-05-26 13:19 ` Florian Mickler
[not found] ` <20100526141612.3e2e0443@lxorguk.ukuu.org.uk>
2010-05-26 13:46 ` Thomas Gleixner
2010-05-26 15:11 ` Florian Mickler
2010-05-26 15:19 ` Kevin Hilman
[not found] ` <alpine.LFD.2.00.1005261521510.2995@localhost.localdomain>
2010-05-26 15:33 ` Felipe Balbi
[not found] ` <20100526171106.0e44a736@schatten.dmk.lab>
2010-05-26 15:12 ` Peter Zijlstra
2010-05-26 15:15 ` Peter Zijlstra
2010-05-26 15:16 ` Peter Zijlstra
[not found] ` <1274886947.1674.1757.camel@laptop>
2010-05-26 15:40 ` Florian Mickler
[not found] ` <20100526174049.5f803b4a@schatten.dmk.lab>
2010-05-26 15:45 ` Peter Zijlstra
[not found] ` <1274888700.1674.1760.camel@laptop>
2010-05-26 15:47 ` Florian Mickler
[not found] ` <20100526174735.2613c1d2@schatten.dmk.lab>
2010-05-26 15:49 ` Florian Mickler
2010-05-26 15:45 ` Alan Cox
2010-05-26 17:22 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005261829540.2995@localhost.localdomain>
2010-05-26 18:02 ` Alan Cox
2010-05-26 19:54 ` Florian Mickler
[not found] ` <20100526190204.5efe4d59@lxorguk.ukuu.org.uk>
2010-05-26 19:56 ` Florian Mickler
[not found] ` <20100526215606.2a747c61@schatten.dmk.lab>
2010-05-26 20:03 ` Vitaly Wool
[not found] ` <AANLkTil3OdarNjeIuzWqM59x4ysFqJrMeiUZzceC_r7P@mail.gmail.com>
2010-05-27 5:11 ` Florian Mickler
[not found] ` <20100527071100.3a38bbac@schatten.dmk.lab>
2010-05-27 13:35 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005271530240.3032@localhost.localdomain>
2010-05-28 7:25 ` Florian Mickler
2010-05-27 13:26 ` Thomas Gleixner
[not found] ` <20100526215409.33296d94@schatten.dmk.lab>
2010-05-26 22:09 ` Alan Cox
[not found] ` <20100526230943.6f5e5b37@lxorguk.ukuu.org.uk>
2010-05-27 5:14 ` Florian Mickler
[not found] ` <20100527071429.58fa81ac@schatten.dmk.lab>
2010-05-27 7:43 ` Vitaly Wool
2010-05-27 13:37 ` Thomas Gleixner
2010-05-26 22:30 ` Arve Hjønnevåg
[not found] ` <AANLkTin97MMu-XO_Lk-snefBWz2ymhS0Qi1y1RxLwdVA@mail.gmail.com>
2010-05-26 23:39 ` Alan Cox
[not found] ` <20100527003943.07c17f85@lxorguk.ukuu.org.uk>
2010-05-27 0:49 ` Arve Hjønnevåg
2010-05-27 14:06 ` Matthew Garrett
[not found] ` <20100527140655.GA28048@srcf.ucam.org>
2010-05-27 14:28 ` Peter Zijlstra
[not found] ` <1274970531.27810.5024.camel@twins>
2010-05-27 14:35 ` Matthew Garrett
[not found] ` <20100527143508.GA30117@srcf.ucam.org>
2010-05-27 14:41 ` Peter Zijlstra
[not found] ` <1274971317.27810.5070.camel@twins>
2010-05-27 14:43 ` Peter Zijlstra
[not found] ` <1274971437.27810.5078.camel@twins>
2010-05-27 15:10 ` Alan Cox
[not found] ` <20100527161054.203663ca@lxorguk.ukuu.org.uk>
2010-05-27 15:07 ` Peter Zijlstra
2010-05-27 16:28 ` Florian Mickler
2010-05-27 21:17 ` Rafael J. Wysocki
2010-05-27 15:05 ` Alan Cox
2010-05-27 15:05 ` Peter Zijlstra
2010-05-27 16:07 ` Matthew Garrett
[not found] ` <20100527160714.GB31937@srcf.ucam.org>
2010-05-27 16:41 ` Alan Cox [this message]
2010-05-27 16:52 ` Matthew Garrett
[not found] ` <20100527165210.GA1062@srcf.ucam.org>
2010-05-27 18:02 ` Alan Cox
[not found] ` <20100527190204.14546caa@lxorguk.ukuu.org.uk>
2010-05-27 18:12 ` Matthew Garrett
[not found] ` <20100527181239.GF3543@srcf.ucam.org>
2010-05-27 18:48 ` Alan Cox
[not found] ` <20100527194840.5bca973f@lxorguk.ukuu.org.uk>
2010-05-27 18:56 ` Matthew Garrett
[not found] ` <20100527185658.GA5703@srcf.ucam.org>
2010-05-27 19:25 ` Alan Cox
[not found] ` <20100527202538.7d2d7f3c@lxorguk.ukuu.org.uk>
2010-05-27 19:29 ` Matthew Garrett
[not found] ` <20100527192926.GA6977@srcf.ucam.org>
2010-05-27 19:53 ` Alan Cox
[not found] ` <20100527205333.676ad65e@lxorguk.ukuu.org.uk>
2010-05-27 20:11 ` Matthew Garrett
[not found] ` <20100527201155.GB7449@srcf.ucam.org>
2010-05-27 20:53 ` Alan Cox
[not found] ` <20100527215347.431c4934@lxorguk.ukuu.org.uk>
2010-05-27 21:08 ` Matthew Garrett
2010-05-27 19:32 ` Zygo Blaxell
2010-05-27 15:32 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005271642440.3032@localhost.localdomain>
2010-05-27 15:52 ` Matthew Garrett
[not found] ` <20100527155201.GA31937@srcf.ucam.org>
2010-05-27 16:16 ` Alan Cox
2010-05-27 16:45 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005271808340.3032@localhost.localdomain>
2010-05-27 16:59 ` Matthew Garrett
2010-05-27 17:00 ` Alan Stern
[not found] ` <20100527165931.GB1062@srcf.ucam.org>
2010-05-27 17:15 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005271905000.3032@localhost.localdomain>
2010-05-27 17:23 ` Matthew Garrett
[not found] ` <20100527172343.GB2468@srcf.ucam.org>
2010-05-27 17:26 ` Peter Zijlstra
2010-05-27 17:49 ` Alan Cox
[not found] ` <20100527184918.3d090921@lxorguk.ukuu.org.uk>
2010-05-27 17:50 ` Matthew Garrett
[not found] ` <20100527175030.GA3543@srcf.ucam.org>
2010-05-27 18:17 ` Alan Cox
2010-05-27 18:18 ` Thomas Gleixner
[not found] ` <20100527191716.16b4a8e3@lxorguk.ukuu.org.uk>
2010-05-27 18:20 ` Matthew Garrett
[not found] ` <20100527182058.GL3543@srcf.ucam.org>
2010-05-27 19:09 ` Alan Cox
[not found] ` <20100527200950.44305cef@lxorguk.ukuu.org.uk>
2010-05-27 21:55 ` Rafael J. Wysocki
[not found] ` <201005272355.13222.rjw@sisk.pl>
2010-05-27 22:20 ` Alan Cox
[not found] ` <20100527232043.784d5c72@lxorguk.ukuu.org.uk>
2010-05-27 23:50 ` Rafael J. Wysocki
[not found] ` <alpine.LFD.2.00.1005272015360.3032@localhost.localdomain>
2010-05-27 18:23 ` Matthew Garrett
[not found] ` <20100527182303.GM3543@srcf.ucam.org>
2010-05-27 19:59 ` Alan Cox
2010-05-27 17:59 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005271930350.3032@localhost.localdomain>
2010-05-27 18:26 ` Matthew Garrett
[not found] ` <20100527182633.GN3543@srcf.ucam.org>
2010-05-27 18:53 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005272027560.3032@localhost.localdomain>
2010-05-27 19:06 ` Matthew Garrett
[not found] ` <20100527190622.GB5703@srcf.ucam.org>
2010-05-27 20:23 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005272207500.3032@localhost.localdomain>
2010-05-27 20:38 ` Matthew Garrett
2010-05-27 20:03 ` Alan Cox
2010-06-21 15:57 ` Pavel Machek
2010-05-27 17:36 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005271334560.3239-100000@iolanthe.rowland.org>
2010-05-27 18:08 ` Thomas Gleixner
2010-05-27 21:25 ` Alan Cox
[not found] ` <alpine.LFD.2.00.1005272006560.3032@localhost.localdomain>
2010-05-27 22:01 ` Rafael J. Wysocki
2010-05-27 17:21 ` Florian Mickler
[not found] ` <20100527192135.6c6543b3@schatten.dmk.lab>
2010-05-27 17:25 ` Peter Zijlstra
[not found] ` <1274981127.27810.5597.camel@twins>
2010-05-27 17:42 ` Florian Mickler
[not found] ` <20100527194241.52caaf37@schatten.dmk.lab>
2010-05-27 17:52 ` Peter Zijlstra
[not found] ` <1274982729.27810.5703.camel@twins>
2010-05-27 17:54 ` Matthew Garrett
[not found] ` <20100527175426.GC3543@srcf.ucam.org>
2010-05-27 18:02 ` Peter Zijlstra
[not found] ` <20100527171615.15a1fd3d@lxorguk.ukuu.org.uk>
2010-05-27 16:19 ` Matthew Garrett
2010-05-27 17:00 ` Thomas Gleixner
[not found] ` <20100527161943.GA32764@srcf.ucam.org>
2010-05-27 17:04 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005271901020.3032@localhost.localdomain>
2010-05-27 17:07 ` Matthew Garrett
[not found] ` <20100527170740.GA1980@srcf.ucam.org>
2010-05-27 17:13 ` Peter Zijlstra
[not found] ` <20100527183041.0487bdf8@lxorguk.ukuu.org.uk>
2010-05-27 17:26 ` Matthew Garrett
2010-05-27 17:30 ` Alan Cox
[not found] ` <1274980391.27810.5552.camel@twins>
2010-05-27 17:16 ` Matthew Garrett
[not found] ` <20100527171644.GA2468@srcf.ucam.org>
2010-05-27 17:20 ` Peter Zijlstra
[not found] ` <1274980856.27810.5582.camel@twins>
2010-05-27 17:25 ` Matthew Garrett
[not found] ` <20100527172510.GC2468@srcf.ucam.org>
2010-05-27 17:28 ` Peter Zijlstra
[not found] ` <1274981288.27810.5609.camel@twins>
2010-05-27 17:32 ` Matthew Garrett
[not found] ` <20100527173218.GF2468@srcf.ucam.org>
2010-05-27 17:35 ` Peter Zijlstra
[not found] ` <1274981750.27810.5641.camel@twins>
2010-05-27 17:41 ` Matthew Garrett
[not found] ` <20100527174140.GB3187@srcf.ucam.org>
2010-05-27 17:46 ` Peter Zijlstra
2010-05-27 17:52 ` Matthew Garrett
[not found] ` <20100527175258.GB3543@srcf.ucam.org>
2010-05-27 17:56 ` Peter Zijlstra
[not found] ` <1274982981.27810.5719.camel@twins>
2010-05-27 17:59 ` Matthew Garrett
[not found] ` <20100527175920.GE3543@srcf.ucam.org>
2010-05-27 18:06 ` Peter Zijlstra
[not found] ` <1274983598.27810.5761.camel@twins>
2010-05-27 18:17 ` Matthew Garrett
[not found] ` <20100527181758.GJ3543@srcf.ucam.org>
2010-05-27 18:22 ` Peter Zijlstra
[not found] ` <1274984528.27810.5818.camel@twins>
2010-05-27 18:31 ` Matthew Garrett
2010-05-27 19:06 ` Alan Cox
2010-05-27 21:03 ` Alan Cox
2010-05-27 21:06 ` Matthew Garrett
2010-05-27 18:12 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005272009380.3032@localhost.localdomain>
2010-05-27 18:18 ` Matthew Garrett
2010-05-27 21:37 ` Alan Cox
2010-05-27 21:36 ` Matthew Garrett
[not found] ` <20100527213635.GA9916@srcf.ucam.org>
2010-05-27 21:56 ` Alan Cox
[not found] ` <20100527225637.57a336ad@lxorguk.ukuu.org.uk>
2010-05-27 22:08 ` Matthew Garrett
[not found] ` <20100527220819.GA10602@srcf.ucam.org>
2010-05-27 22:32 ` Alan Cox
[not found] ` <20100527233247.37195656@lxorguk.ukuu.org.uk>
2010-05-27 22:35 ` Matthew Garrett
2010-05-27 17:32 ` Alan Stern
2010-05-27 17:18 ` Felipe Balbi
2010-05-27 18:35 ` Zygo Blaxell
[not found] ` <AANLkTinOf__Q9XIM1Lll1eJ5HZ35zkDlUp60LmGcetdG@mail.gmail.com>
2010-05-27 14:29 ` Thomas Gleixner
2010-05-27 7:42 ` Vitaly Wool
[not found] ` <AANLkTimcPZTZYH4fDxX0xlLxMvtl87FDOEP_hdaztFYJ@mail.gmail.com>
2010-05-27 8:05 ` Arve Hjønnevåg
2010-05-28 2:09 ` Ben Gamari
[not found] ` <877hmon5em.fsf@gmail.com>
2010-05-28 7:03 ` Florian Mickler
2010-05-26 8:45 ` Peter Zijlstra
[not found] ` <1274863533.5882.4864.camel@twins>
2010-05-26 9:40 ` Florian Mickler
[not found] ` <20100526114053.440c0559@schatten.dmk.lab>
2010-05-26 9:54 ` Peter Zijlstra
[not found] ` <1274867677.5882.5127.camel@twins>
2010-05-26 11:35 ` Florian Mickler
[not found] <20100601073548.5ed65352@schatten.dmk.lab>
2010-06-03 13:44 ` David Brownell
[not found] <20100601123846.14d0535b@notabene.brown>
2010-06-01 14:47 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1006011032150.2949-100000@iolanthe.rowland.org>
2010-06-01 22:08 ` Rafael J. Wysocki
2010-06-02 0:43 ` Neil Brown
[not found] ` <20100602104318.0c41b3cd@notabene.brown>
2010-06-02 20:55 ` Rafael J. Wysocki
[not found] <20100529131810.5bb51bdd@schatten.dmk.lab>
2010-05-29 14:10 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005290941060.30763-100000@netrider.rowland.org>
2010-05-29 14:30 ` Brian Swetland
[not found] ` <AANLkTimyLsldXoZ_egjybwS9kE_OcxsOuZwC0F-C2HjY@mail.gmail.com>
2010-05-29 15:03 ` Alan Stern
2010-05-29 15:09 ` Alan Cox
[not found] ` <Pine.LNX.4.44L0.1005291056490.31946-100000@netrider.rowland.org>
2010-05-29 15:11 ` Brian Swetland
2010-05-29 20:41 ` Rafael J. Wysocki
2010-05-29 22:13 ` Arve Hjønnevåg
[not found] ` <AANLkTik_4ezDAQoAQjkpEgwD9SLKeOjDzy2H7T2v6uCP@mail.gmail.com>
2010-05-29 23:00 ` Nigel Cunningham
2010-05-30 0:45 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005292026080.6300-100000@netrider.rowland.org>
2010-05-30 15:43 ` Alan Stern
2010-05-31 9:43 ` Arve Hjønnevåg
[not found] ` <AANLkTikxws5kmFhnBO1MLzE65ETka3Jy0R5ayAKTS1Lc@mail.gmail.com>
2010-05-31 15:13 ` Alan Stern
2010-05-31 21:38 ` Rafael J. Wysocki
[not found] ` <201005312338.55109.rjw@sisk.pl>
2010-05-31 23:26 ` mark gross
[not found] ` <20100531232617.GF31155@gvim.org>
2010-06-01 7:07 ` Florian Mickler
2010-06-01 13:46 ` mark gross
[not found] ` <20100601090737.4bc243d9@schatten.dmk.lab>
2010-06-01 14:05 ` mark gross
[not found] ` <20100601140519.GC1281@gvim.org>
2010-06-01 20:00 ` Florian Mickler
[not found] ` <20100601220035.6b47d57d@schatten.dmk.lab>
2010-06-01 20:12 ` Florian Mickler
2010-06-02 3:50 ` Arve Hjønnevåg
[not found] ` <AANLkTikF-B23_UWG1O3tlBl4m8NStAJllGhhevNhYZT6@mail.gmail.com>
2010-06-02 13:39 ` mark gross
[not found] ` <20100602133910.GA9106@gvim.org>
2010-06-02 21:58 ` Arve Hjønnevåg
2010-06-02 22:03 ` Rafael J. Wysocki
[not found] ` <201006030003.49486.rjw@sisk.pl>
2010-06-03 3:10 ` mark gross
[not found] ` <20100603031024.GA11311@gvim.org>
2010-06-03 21:02 ` Rafael J. Wysocki
[not found] ` <AANLkTilSU79cnBODXFokzIPB1hRcZBxbwTgTQ59MeKcK@mail.gmail.com>
2010-06-03 3:18 ` mark gross
[not found] ` <20100603031842.GB11311@gvim.org>
2010-06-03 4:54 ` Brian Swetland
[not found] ` <AANLkTiks7sQBbDnN6QrtGVqSXLob1qCs7VA12LZAWnfM@mail.gmail.com>
2010-06-03 5:40 ` mark gross
[not found] ` <20100603054018.GE11311@gvim.org>
2010-06-03 7:10 ` Arve Hjønnevåg
[not found] ` <AANLkTikvuqtcGS1UdePRxipSk4S5Vmci2uPfFtzZgx6X@mail.gmail.com>
2010-06-03 13:24 ` mark gross
2010-06-03 13:55 ` Florian Mickler
[not found] ` <20100603132449.GA15595@gvim.org>
2010-06-03 14:30 ` Florian Mickler
[not found] ` <20100603163049.4eba1574@schatten.dmk.lab>
2010-06-05 3:22 ` mark gross
2010-06-03 14:36 ` James Bottomley
[not found] ` <1275575794.5914.74.camel@mulgrave.site>
2010-06-03 15:17 ` Florian Mickler
[not found] ` <20100603171727.7d835a1d@schatten.dmk.lab>
2010-06-03 15:29 ` James Bottomley
[not found] ` <1275578992.5914.146.camel@mulgrave.site>
2010-06-03 16:00 ` Florian Mickler
2010-06-03 21:05 ` Rafael J. Wysocki
[not found] ` <201006032305.58082.rjw@sisk.pl>
2010-06-04 4:07 ` Arve Hjønnevåg
[not found] ` <AANLkTimiIyT2TxV5BhhtXwKNKUN9Pa5Bl8YtcoJpHNsw@mail.gmail.com>
2010-06-04 13:09 ` Florian Mickler
2010-06-04 14:23 ` James Bottomley
2010-06-03 8:04 ` Peter Zijlstra
[not found] ` <1275552269.27810.34949.camel@twins>
2010-06-03 13:25 ` mark gross
2010-06-02 2:51 ` mark gross
[not found] <1275059924.27810.9640.camel@twins>
2010-05-28 15:30 ` Alan Stern
[not found] <Pine.LNX.4.44L0.1005281029500.1939-100000@iolanthe.rowland.org>
2010-05-28 15:18 ` Peter Zijlstra
[not found] <1275031197.32462.14.camel@laptop>
2010-05-28 14:49 ` Alan Stern
[not found] <Pine.LNX.4.44L0.1005271744130.3239-100000@iolanthe.rowland.org>
2010-05-28 8:26 ` Thomas Gleixner
[not found] <Pine.LNX.4.44L0.1005271517170.3239-100000@iolanthe.rowland.org>
2010-05-28 5:15 ` Peter Zijlstra
[not found] ` <1275023742.27810.7782.camel@twins>
2010-05-28 6:16 ` Arve Hjønnevåg
[not found] <201005280124.25347.rjw@sisk.pl>
2010-05-28 0:59 ` Alan Stern
2010-05-28 7:19 ` Peter Zijlstra
[not found] <Pine.LNX.4.44L0.1005271526130.3239-100000@iolanthe.rowland.org>
2010-05-27 23:24 ` Rafael J. Wysocki
[not found] <20100527223512.GA11364@srcf.ucam.org>
2010-05-27 23:02 ` Alan Stern
[not found] <20100527222514.0a1710bf@lxorguk.ukuu.org.uk>
2010-05-27 21:38 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005271730180.3239-100000@iolanthe.rowland.org>
2010-05-27 22:08 ` Alan Cox
[not found] ` <20100527230806.4deb6de3@lxorguk.ukuu.org.uk>
2010-05-27 22:09 ` Matthew Garrett
[not found] ` <20100527220949.GB10602@srcf.ucam.org>
2010-05-27 22:23 ` Alan Cox
[not found] ` <20100527232357.6d14fdb2@lxorguk.ukuu.org.uk>
2010-05-27 22:36 ` Matthew Garrett
[not found] ` <20100527223605.GB11364@srcf.ucam.org>
2010-05-27 22:55 ` Alan Cox
[not found] ` <20100527235546.09f3ce8a@lxorguk.ukuu.org.uk>
2010-05-28 4:31 ` tytso
2010-05-28 4:55 ` Brian Swetland
[not found] ` <AANLkTimqcVYhRxa4JUaiArPHS4_T7I-kbclhVx_jJOt3@mail.gmail.com>
2010-05-28 6:39 ` Florian Mickler
[not found] ` <20100528043114.GC26177@thunk.org>
2010-05-28 7:11 ` Peter Zijlstra
2010-05-28 9:37 ` Alan Cox
2010-05-28 9:53 ` Alan Cox
[not found] ` <20100528103713.0a7952d9@lxorguk.ukuu.org.uk>
2010-05-28 11:41 ` Matthew Garrett
2010-05-28 12:16 ` Theodore Tso
[not found] ` <20100528114123.GA22947@srcf.ucam.org>
2010-05-28 12:26 ` Igor Stoppa
[not found] ` <4BFFB681.1000105@nokia.com>
2010-05-28 12:52 ` Brian Swetland
[not found] ` <AANLkTim04ZfMcPHRB2D_bqcAuguaGwySH2b6repuYLkk@mail.gmail.com>
[not found] ` <4BFFC5DF.5030504@nokia.com>
2010-05-28 13:27 ` Brian Swetland
2010-05-28 13:39 ` tytso
[not found] ` <AANLkTikKGeGHHL6AYC7uBuT7Zihj7lozfidWQ8zRHwab@mail.gmail.com>
2010-05-28 14:12 ` Igor Stoppa
2010-05-28 14:20 ` Alan Cox
[not found] ` <4BFFCF39.3010507@nokia.com>
2010-05-28 23:42 ` Felipe Contreras
[not found] ` <AANLkTinyh1YLmL6miVAxvkh9RMYDY5JChA-_f7oN0zvb@mail.gmail.com>
2010-05-29 8:28 ` Florian Mickler
[not found] ` <20100529102819.21732783@schatten.dmk.lab>
2010-05-29 8:56 ` Florian Mickler
2010-05-31 5:55 ` Igor Stoppa
[not found] ` <4C034F55.1090807@nokia.com>
2010-06-05 16:58 ` Felipe Contreras
[not found] ` <20100528133900.GG26177@thunk.org>
2010-05-28 14:14 ` Igor Stoppa
[not found] ` <4BFFCFC7.7070302@nokia.com>
2010-05-28 14:21 ` Matthew Garrett
[not found] ` <20100528142124.GA26733@srcf.ucam.org>
2010-05-28 14:29 ` Brian Swetland
[not found] ` <AANLkTilj6i7Qi-eh7e3WWeh4zxKALqr-0yhAvWKis52t@mail.gmail.com>
2010-05-28 14:41 ` Matthew Garrett
2010-05-28 15:06 ` Alan Cox
[not found] ` <20100528160628.7c121dab@lxorguk.ukuu.org.uk>
2010-05-28 15:13 ` Brian Swetland
[not found] ` <AANLkTin3suKfGBSfiDj0n8ztY8UiHzr4af_Cr0SPOevY@mail.gmail.com>
2010-05-28 16:31 ` Alan Cox
2010-05-28 17:27 ` Zygo Blaxell
[not found] ` <20100528172713.GA7444@gibbs.hungrycats.org>
2010-05-28 18:16 ` Peter Zijlstra
[not found] ` <1275070580.1645.379.camel@laptop>
2010-05-28 19:51 ` Zygo Blaxell
[not found] ` <20100528173151.2c5f6fde@lxorguk.ukuu.org.uk>
2010-05-28 17:01 ` Alan Stern
2010-05-28 21:53 ` Arve Hjønnevåg
2010-05-28 13:32 ` Igor Stoppa
2010-05-29 8:43 ` Vitaly Wool
2010-05-28 13:54 ` Alan Cox
[not found] ` <20100528145444.265d1853@lxorguk.ukuu.org.uk>
2010-05-28 14:28 ` Igor Stoppa
[not found] ` <06439EEF-9404-45DC-AB37-5CC0486CCF6C@mit.edu>
2010-05-28 12:28 ` Theodore Tso
[not found] ` <4BFFBBE6.50604@nokia.com>
2010-05-28 12:31 ` Theodore Tso
[not found] ` <67B0FE92-F943-470C-9B23-27BF3F7E81DB@mit.edu>
2010-05-28 13:30 ` Igor Stoppa
2010-05-28 12:49 ` Igor Stoppa
[not found] ` <1275030704.32462.11.camel@laptop>
2010-05-29 0:43 ` Arve Hjønnevåg
[not found] ` <AANLkTikEtlbkT4Ws3H2YGt_9QC46B5dr-b1oxJOcG4GN@mail.gmail.com>
2010-05-29 8:10 ` Peter Zijlstra
[not found] ` <1275120618.27810.12699.camel@twins>
2010-05-29 14:16 ` Alan Stern
2010-05-29 16:10 ` James Bottomley
[not found] ` <1275149418.4503.128.camel@mulgrave.site>
2010-05-29 18:12 ` Peter Zijlstra
2010-05-29 18:12 ` Peter Zijlstra
2010-05-29 18:12 ` Peter Zijlstra
2010-05-31 20:49 ` Thomas Gleixner
[not found] ` <1275156734.1645.496.camel@laptop>
2010-05-31 20:12 ` Florian Mickler
[not found] ` <20100531221219.212bf119@schatten.dmk.lab>
2010-05-31 20:47 ` Florian Mickler
2010-05-31 21:13 ` Florian Mickler
[not found] ` <20100531224732.2073828d@schatten.dmk.lab>
2010-06-05 17:04 ` Felipe Contreras
[not found] ` <AANLkTinPUNer7XhAqS4VSWhOxqjEjaHtr76EK5tzYYjJ@mail.gmail.com>
2010-06-05 19:04 ` Rafael J. Wysocki
[not found] ` <201006052104.05324.rjw@sisk.pl>
2010-06-05 19:16 ` Peter Zijlstra
[not found] ` <1275765379.1645.532.camel@laptop>
2010-06-05 19:39 ` Rafael J. Wysocki
[not found] ` <201006052139.31253.rjw@sisk.pl>
2010-06-05 19:52 ` Peter Zijlstra
2010-06-05 19:53 ` Felipe Contreras
2010-05-31 20:52 ` James Bottomley
2010-05-31 21:14 ` Rafael J. Wysocki
[not found] ` <201005312314.12391.rjw@sisk.pl>
2010-06-05 17:16 ` Felipe Contreras
[not found] ` <AANLkTil4DLUciWMVmCiiygS2Y1vLZu0Lnfys-w4q3L7W@mail.gmail.com>
2010-06-05 19:49 ` Florian Mickler
[not found] ` <20100605214939.49dd0ee0@schatten.dmk.lab>
2010-06-05 19:56 ` Felipe Contreras
[not found] ` <AANLkTikp1Z9mGOaLf_oE_3qCL7U4oeHaPSp6zkp4eEfL@mail.gmail.com>
2010-06-05 21:52 ` Florian Mickler
[not found] ` <alpine.LFD.2.00.1005312231120.2933@localhost.localdomain>
2010-05-31 21:21 ` James Bottomley
[not found] ` <1275340869.2823.344.camel@mulgrave.site>
2010-05-31 21:46 ` Thomas Gleixner
2010-05-31 22:17 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005312343290.2933@localhost.localdomain>
2010-06-01 5:21 ` Arve Hjønnevåg
[not found] ` <AANLkTinwvkJRU0JjJdNrGfXWYpQMIr8bO3BZxcXubt_Z@mail.gmail.com>
2010-06-01 11:10 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1006011257580.2933@localhost.localdomain>
2010-06-02 3:32 ` Arve Hjønnevåg
[not found] ` <AANLkTimTO5n_s9JZAcFJOhMlPMtsOrogx-5S5nykOWtY@mail.gmail.com>
2010-06-02 7:00 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1006020856550.2933@localhost.localdomain>
2010-06-02 7:17 ` Arve Hjønnevåg
[not found] ` <AANLkTikI8HUkwA1P-ozAcxoVrlQDmHAI-RbvH5JrjsDT@mail.gmail.com>
2010-06-02 7:21 ` Thomas Gleixner
2010-06-01 13:51 ` Matthew Garrett
[not found] ` <20100601135102.GA8098@srcf.ucam.org>
2010-06-01 21:01 ` James Bottomley
[not found] ` <1275426085.21962.967.camel@mulgrave.site>
2010-06-01 21:39 ` David Brownell
2010-06-01 22:24 ` Rafael J. Wysocki
[not found] ` <201006020024.14220.rjw@sisk.pl>
2010-06-01 22:36 ` James Bottomley
[not found] ` <1275431816.21962.1108.camel@mulgrave.site>
2010-06-02 1:10 ` Arve Hjønnevåg
[not found] ` <AANLkTikObnAZbyOxeYAhXcEbimO3XTTO-HlC9CD_HH6t@mail.gmail.com>
2010-06-02 2:44 ` Gross, Mark
[not found] ` <CA1BBBBC9359F04AA639128AC0D5D1E9692AAF29@orsmsx502.amr.corp.intel.com>
2010-06-02 3:15 ` Arve Hjønnevåg
[not found] ` <AANLkTinsgmHh7iLhESPXiTkoW9SL4H8E92-7bARpDxNX@mail.gmail.com>
2010-06-02 3:26 ` Gross, Mark
2010-06-02 4:02 ` James Bottomley
[not found] ` <1275451342.21962.1777.camel@mulgrave.site>
2010-06-02 4:41 ` Arve Hjønnevåg
[not found] ` <AANLkTilRcFZyYa-0HlaM-6IEZSyar3S9S_cCWSFax2Zo@mail.gmail.com>
2010-06-02 15:05 ` James Bottomley
[not found] ` <1275491111.2799.110.camel@mulgrave.site>
2010-06-02 19:47 ` Florian Mickler
[not found] ` <20100602214748.7742e3ae@schatten.dmk.lab>
2010-06-02 20:41 ` James Bottomley
[not found] ` <1275511271.2799.516.camel@mulgrave.site>
2010-06-02 22:27 ` Arve Hjønnevåg
[not found] ` <AANLkTikeHarkwvO5-Fdrxt1FzTQL2lGHiQXBSG0vsKob@mail.gmail.com>
2010-06-02 23:03 ` James Bottomley
2010-06-02 23:06 ` Florian Mickler
[not found] ` <20100603010607.5baf82a6@schatten.dmk.lab>
2010-06-02 23:15 ` Gross, Mark
[not found] ` <CA1BBBBC9359F04AA639128AC0D5D1E9692ABC92@orsmsx502.amr.corp.intel.com>
2010-06-03 10:03 ` Alan Cox
[not found] ` <20100603110312.48a508dc@lxorguk.ukuu.org.uk>
2010-06-03 10:05 ` Peter Zijlstra
2010-06-03 13:24 ` James Bottomley
[not found] ` <1275571471.5914.2.camel@mulgrave.site>
2010-06-03 14:18 ` Florian Mickler
2010-06-03 14:26 ` Gross, Mark
2010-06-03 14:35 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1006031602160.2933@localhost.localdomain>
2010-06-03 14:55 ` James Bottomley
[not found] ` <1275559512.27810.35287.camel@twins>
2010-06-03 14:42 ` Kevin Hilman
[not found] ` <87d3w818ki.fsf@deeprootsystems.com>
2010-06-03 14:52 ` Gross, Mark
2010-06-03 16:58 ` Kevin Hilman
[not found] ` <87hblkyrwt.fsf@deeprootsystems.com>
2010-06-03 17:01 ` James Bottomley
2010-06-03 17:16 ` Muralidhar, Rajeev D
2010-06-03 21:50 ` Bryan Huntsman
2010-06-02 2:45 ` mark gross
[not found] ` <20100602024538.GA5764@gvim.org>
2010-06-02 4:14 ` James Bottomley
2010-05-31 21:41 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005312250050.2933@localhost.localdomain>
2010-05-31 22:23 ` Rafael J. Wysocki
[not found] ` <201006010024.00032.rjw@sisk.pl>
2010-05-31 22:27 ` Thomas Gleixner
2010-05-31 23:47 ` James Bottomley
2010-05-28 2:47 ` Arve Hjønnevåg
[not found] ` <AANLkTil6Bo7qZltbLzHJjIDyruKHFQEURpe5LPJEpTws@mail.gmail.com>
2010-05-28 9:17 ` Alan Cox
2010-05-28 9:32 ` Arve Hjønnevåg
[not found] ` <AANLkTilYHKKmQePBGW3LVLjUZy7HXHQku2Iub-LWGBm6@mail.gmail.com>
2010-05-28 11:16 ` Alan Cox
2010-05-28 11:20 ` Arve Hjønnevåg
[not found] ` <AANLkTinVs-YfxCHm7Zees9oq_NYySqI6UFtX57JlsLy-@mail.gmail.com>
2010-05-28 13:55 ` Alan Cox
[not found] ` <20100528145526.0ce83c85@lxorguk.ukuu.org.uk>
2010-05-28 14:05 ` Matthew Garrett
2010-05-28 12:21 ` Alan Cox
2010-05-28 12:30 ` Peter Zijlstra
2010-05-28 12:31 ` Matthew Garrett
[not found] ` <1275049836.1645.1.camel@laptop>
2010-05-28 13:02 ` Alan Cox
[not found] ` <20100528140236.3214929e@lxorguk.ukuu.org.uk>
2010-05-28 13:20 ` Peter Zijlstra
[not found] ` <1275052817.1645.64.camel@laptop>
2010-05-28 14:59 ` Peter Zijlstra
[not found] ` <1275058794.27810.9571.camel@twins>
2010-05-28 15:14 ` Alan Stern
2010-05-28 15:53 ` Florian Mickler
2010-05-28 21:44 ` Rafael J. Wysocki
[not found] ` <201005282344.49892.rjw@sisk.pl>
2010-05-29 7:53 ` Peter Zijlstra
[not found] ` <1275119617.27810.12634.camel@twins>
2010-05-29 20:12 ` Rafael J. Wysocki
[not found] ` <20100528123110.GA23930@srcf.ucam.org>
2010-05-28 13:54 ` Alan Cox
[not found] ` <20100528145420.1c06e4a3@lxorguk.ukuu.org.uk>
2010-05-28 14:02 ` Matthew Garrett
[not found] ` <20100528140237.GD25798@srcf.ucam.org>
2010-05-28 15:24 ` Alan Cox
2010-05-28 14:35 ` Alan Stern
2010-05-29 8:39 ` Vitaly Wool
2010-05-28 14:07 ` Alan Stern
2010-05-31 1:57 ` Zygo Blaxell
[not found] <Pine.LNX.4.44L0.1005271724430.3239-100000@iolanthe.rowland.org>
2010-05-27 21:33 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005272332320.3478@localhost.localdomain>
2010-05-27 21:38 ` Matthew Garrett
2010-05-27 21:49 ` Alan Stern
[not found] <20100527203843.GA8395@srcf.ucam.org>
2010-05-27 21:26 ` Alan Stern
[not found] <20100527210808.GB8865@srcf.ucam.org>
2010-05-27 21:24 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005271723200.3239-100000@iolanthe.rowland.org>
2010-05-27 21:28 ` Matthew Garrett
[not found] ` <20100527212852.GA9859@srcf.ucam.org>
2010-05-28 10:03 ` Bernd Petrovitsch
[not found] ` <1275040988.20005.29.camel@thorin>
2010-05-28 11:45 ` Matthew Garrett
[not found] ` <20100528114504.GB22947@srcf.ucam.org>
2010-05-28 17:12 ` Bernd Petrovitsch
[not found] <20100527202712.181fd172@lxorguk.ukuu.org.uk>
2010-05-27 19:32 ` Alan Stern
[not found] <1274983363.27810.5749.camel@twins>
2010-05-27 19:19 ` Alan Stern
[not found] <Pine.LNX.4.44L0.1005271344040.3239-100000@iolanthe.rowland.org>
2010-05-27 17:52 ` Peter Zijlstra
[not found] ` <1274982779.27810.5708.camel@twins>
2010-05-27 17:57 ` Matthew Garrett
[not found] ` <20100527175719.GD3543@srcf.ucam.org>
2010-05-27 18:02 ` Peter Zijlstra
[not found] ` <1274983333.27810.5744.camel@twins>
2010-05-27 18:14 ` Matthew Garrett
[not found] ` <20100527181433.GG3543@srcf.ucam.org>
2010-05-27 18:18 ` Peter Zijlstra
[not found] ` <1274984291.27810.5802.camel@twins>
2010-05-27 18:29 ` Matthew Garrett
[not found] ` <20100527182913.GO3543@srcf.ucam.org>
2010-05-27 18:55 ` Thomas Gleixner
[not found] ` <20100527200313.5c532f2f@lxorguk.ukuu.org.uk>
2010-05-27 18:58 ` Thomas Gleixner
2010-05-27 19:13 ` Matthew Garrett
[not found] ` <20100527191302.GC5703@srcf.ucam.org>
2010-05-27 19:50 ` Alan Cox
2010-05-27 20:02 ` Matthew Garrett
2010-05-27 23:10 ` Rafael J. Wysocki
2010-05-27 23:50 ` Alan Cox
[not found] ` <20100528005045.6ea5feba@lxorguk.ukuu.org.uk>
2010-05-28 0:06 ` Dmitry Torokhov
2010-05-28 0:39 ` Rafael J. Wysocki
2010-05-28 0:45 ` Arve Hjønnevåg
2010-05-28 7:29 ` Peter Zijlstra
[not found] ` <AANLkTimqvMuMpB5E3tj58OtlRc-7mVaec-9EHAegywg7@mail.gmail.com>
2010-05-28 7:43 ` Peter Zijlstra
2010-05-28 11:04 ` Alan Cox
2010-05-28 11:05 ` Arve Hjønnevåg
[not found] ` <1275032623.32462.30.camel@laptop>
2010-05-28 22:11 ` Rafael J. Wysocki
[not found] ` <201005290011.32543.rjw@sisk.pl>
2010-05-29 9:04 ` Florian Mickler
[not found] ` <20100529110426.077cba47@schatten.dmk.lab>
2010-05-29 10:42 ` Peter Zijlstra
[not found] ` <1275129757.27810.13205.camel@twins>
2010-05-29 11:18 ` Florian Mickler
2010-05-29 16:19 ` James Bottomley
[not found] ` <1275031797.32462.18.camel@laptop>
2010-05-28 22:18 ` Rafael J. Wysocki
[not found] ` <201005290018.14832.rjw@sisk.pl>
2010-05-29 7:59 ` Peter Zijlstra
2010-05-27 19:03 ` Alan Cox
2010-05-27 18:20 ` Alan Cox
2010-05-27 19:04 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005271449160.3239-100000@iolanthe.rowland.org>
2010-05-27 19:27 ` Alan Cox
[not found] <Pine.LNX.4.44L0.1005271329460.3239-100000@iolanthe.rowland.org>
2010-05-27 17:37 ` Peter Zijlstra
[not found] ` <1274981871.27810.5650.camel@twins>
2010-05-27 21:36 ` Rafael J. Wysocki
[not found] ` <201005272336.26643.rjw@sisk.pl>
2010-05-27 21:49 ` Alan Cox
[not found] <1274980420.27810.5557.camel@twins>
2010-05-27 17:29 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005271327560.3239-100000@iolanthe.rowland.org>
2010-05-27 17:32 ` Peter Zijlstra
[not found] ` <1274981533.27810.5624.camel@twins>
2010-05-27 21:10 ` Rafael J. Wysocki
2010-05-27 21:34 ` Alan Cox
[not found] <Pine.LNX.4.44L0.1005271253240.3239-100000@iolanthe.rowland.org>
2010-05-27 17:24 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005271915540.3032@localhost.localdomain>
2010-05-27 17:31 ` Matthew Garrett
[not found] ` <20100527173118.GE2468@srcf.ucam.org>
2010-05-27 17:34 ` Peter Zijlstra
[not found] ` <1274981680.27810.5636.camel@twins>
2010-05-27 17:40 ` Matthew Garrett
2010-05-27 17:44 ` Alan Stern
[not found] ` <20100527174019.GA3187@srcf.ucam.org>
2010-05-27 17:47 ` Peter Zijlstra
2010-05-27 18:05 ` Alan Cox
2010-05-27 18:14 ` Thomas Gleixner
[not found] ` <20100527190515.08be091a@lxorguk.ukuu.org.uk>
2010-05-27 18:15 ` Matthew Garrett
[not found] ` <20100527181533.GH3543@srcf.ucam.org>
2010-05-27 18:44 ` Kevin Hilman
2010-05-27 22:45 ` Rafael J. Wysocki
[not found] ` <1274982447.27810.5684.camel@twins>
2010-05-27 19:22 ` Alan Stern
2010-05-27 22:41 ` Rafael J. Wysocki
[not found] ` <201005280041.43553.rjw@sisk.pl>
2010-05-27 23:15 ` Alan Cox
2010-05-27 23:42 ` Kevin Hilman
2010-05-28 0:05 ` Rafael J. Wysocki
[not found] ` <201005280205.01561.rjw@sisk.pl>
2010-05-28 0:49 ` Mike Chan
[not found] ` <AANLkTik-8HtTVOh3toXBZZlXYgDTFtfkm6EDYRw-UPm4@mail.gmail.com>
2010-05-28 7:47 ` Peter Zijlstra
2010-05-28 13:22 ` Matthew Garrett
2010-05-27 18:05 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005271959450.3032@localhost.localdomain>
2010-05-27 18:17 ` Matthew Garrett
2010-05-28 8:44 ` Florian Mickler
[not found] ` <20100528104415.1403541a@schatten.dmk.lab>
2010-05-28 9:18 ` Arve Hjønnevåg
[not found] ` <AANLkTikXtk-f41-z8gXfXLNLqgGVa0z4d-qgIvwljbR-@mail.gmail.com>
2010-05-28 10:25 ` Florian Mickler
[not found] ` <20100528122521.3698a62e@schatten.dmk.lab>
2010-05-28 11:35 ` Arve Hjønnevåg
[not found] ` <AANLkTikumixQTaKvlyaxjZgfCZNZXFM9LySJ2YZ4OVZf@mail.gmail.com>
2010-05-28 12:09 ` Florian Mickler
2010-05-28 22:24 ` Rafael J. Wysocki
2010-05-29 1:11 ` Arve Hjønnevåg
[not found] ` <AANLkTimM7O_k8KVSfMgsB8b_EKQEz0vpYu6pxjedsTcJ@mail.gmail.com>
2010-05-29 20:27 ` Rafael J. Wysocki
2010-05-29 21:55 ` Arve Hjønnevåg
[not found] ` <AANLkTim6zsho4RSrseJostaOJe9lL4VNRKA3vDGJWJhK@mail.gmail.com>
2010-05-30 20:02 ` Rafael J. Wysocki
[not found] ` <201005302202.39511.rjw@sisk.pl>
2010-05-31 9:16 ` Arve Hjønnevåg
[not found] ` <AANLkTilUQ2AG76nbK6LwI8_7zw0_yMSoAOr9pmuz7xrt@mail.gmail.com>
2010-05-31 21:47 ` Rafael J. Wysocki
[not found] ` <201005312347.24251.rjw@sisk.pl>
2010-06-01 4:57 ` Arve Hjønnevåg
[not found] ` <AANLkTilvOgSFTDFtXbjJobMZWxgfvsC97TqC7_a_NHBX@mail.gmail.com>
2010-06-01 6:57 ` Igor Stoppa
2010-06-01 12:17 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1006011411200.2933@localhost.localdomain>
2010-06-02 3:23 ` Arve Hjønnevåg
[not found] ` <AANLkTikZHmF6baP7dEXEGFE8YsbEteRjlhb5wqZX8ll1@mail.gmail.com>
2010-06-02 8:29 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1006020905410.2933@localhost.localdomain>
2010-06-02 8:54 ` Arve Hjønnevåg
2010-06-02 9:10 ` Peter Zijlstra
[not found] ` <AANLkTinDm3FIrbS1jqEzW15THmr1hdd7ox0Mllm1VLjZ@mail.gmail.com>
2010-06-02 9:07 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1006021059150.2933@localhost.localdomain>
2010-06-02 9:32 ` Arve Hjønnevåg
2010-06-02 9:39 ` Peter Zijlstra
[not found] ` <1275471561.27810.30865.camel@twins>
2010-06-02 10:00 ` Arve Hjønnevåg
[not found] ` <AANLkTilLmAb2c9fQwuguzWtjcHfuTZvPUTbUx7vuwFI6@mail.gmail.com>
2010-06-02 10:21 ` Peter Zijlstra
[not found] ` <1275474088.27810.31000.camel@twins>
2010-06-02 20:13 ` Florian Mickler
[not found] ` <20100602221309.6da754e7@schatten.dmk.lab>
2010-06-03 7:40 ` Peter Zijlstra
[not found] ` <1275550802.27810.34863.camel@twins>
2010-06-03 14:12 ` Florian Mickler
[not found] ` <20100603161205.73a2b56d@schatten.dmk.lab>
2010-06-03 15:28 ` Peter Zijlstra
[not found] ` <1275578881.27810.35995.camel@twins>
2010-06-04 15:43 ` Florian Mickler
2010-06-05 17:30 ` Felipe Contreras
[not found] ` <AANLkTinBg9W7zeomPbpGEDWkIsfxO9OfFUC0Kq7wafFb@mail.gmail.com>
2010-06-05 19:56 ` Florian Mickler
[not found] ` <20100605215604.68efc4e5@schatten.dmk.lab>
2010-06-05 20:06 ` Felipe Contreras
[not found] ` <AANLkTilhvUn3PfnHsJTNzhr59xrUyvGlFmnAOnub65sE@mail.gmail.com>
2010-06-05 20:50 ` Florian Mickler
[not found] ` <20100605225012.771332db@schatten.dmk.lab>
2010-06-09 8:13 ` Felipe Contreras
2010-06-05 17:44 ` Felipe Contreras
[not found] ` <AANLkTikna-Vs_phy2VrJs0I8gIsdSmwuxTJ67gQ_2oTt@mail.gmail.com>
2010-06-05 20:01 ` Florian Mickler
[not found] ` <20100605220143.08774900@schatten.dmk.lab>
2010-06-05 20:26 ` Felipe Contreras
2010-06-05 21:11 ` Florian Mickler
[not found] ` <20100605231141.52de0df7@schatten.dmk.lab>
2010-06-05 21:24 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1006052318050.2933@localhost.localdomain>
2010-06-05 21:34 ` Florian Mickler
[not found] ` <20100605233439.0ccbef82@schatten.dmk.lab>
2010-06-05 21:40 ` Thomas Gleixner
[not found] ` <1275469851.27810.30775.camel@twins>
2010-06-02 11:58 ` Alan Cox
[not found] <20100527162740.GA9625@nokia.com>
2010-05-27 17:04 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005271303190.3239-100000@iolanthe.rowland.org>
2010-05-27 17:13 ` Peter Zijlstra
2010-05-27 17:15 ` Felipe Balbi
2010-05-27 17:25 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005271924170.3032@localhost.localdomain>
2010-05-27 17:41 ` Alan Stern
2010-05-27 21:15 ` Rafael J. Wysocki
[not found] ` <201005272315.28475.rjw@sisk.pl>
2010-05-27 21:29 ` Alan Cox
2010-05-27 21:40 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005272334040.3478@localhost.localdomain>
2010-05-27 23:43 ` Rafael J. Wysocki
[not found] ` <201005280143.01889.rjw@sisk.pl>
2010-05-27 23:50 ` Arve Hjønnevåg
2010-05-31 4:33 ` Neil Brown
[not found] ` <20100531143339.249ae1f4@notabene.brown>
2010-05-31 22:05 ` Rafael J. Wysocki
[not found] ` <201006010005.19554.rjw@sisk.pl>
2010-05-31 23:00 ` Neil Brown
2010-06-01 0:32 ` Rafael J. Wysocki
[not found] ` <201006010232.20263.rjw@sisk.pl>
2010-06-01 0:54 ` Thomas Gleixner
2010-06-01 1:33 ` Neil Brown
[not found] ` <20100601113309.609349fd@notabene.brown>
2010-06-01 1:49 ` Thomas Gleixner
2010-06-01 2:10 ` Alan Stern
[not found] ` <alpine.LFD.2.00.1006010340160.2933@localhost.localdomain>
2010-06-01 2:20 ` Neil Brown
[not found] ` <20100601122012.1edeaf48@notabene.brown>
2010-06-01 5:35 ` Florian Mickler
2010-06-01 10:50 ` Thomas Gleixner
[not found] ` <Pine.LNX.4.44L0.1005312159420.9148-100000@netrider.rowland.org>
2010-06-01 2:38 ` Neil Brown
2010-06-01 22:03 ` Rafael J. Wysocki
2010-06-01 5:04 ` Arve Hjønnevåg
[not found] ` <AANLkTimIzm7fEczlaDT5QqkiBFAjbe46rciLxxsoLSya@mail.gmail.com>
2010-06-01 22:00 ` Rafael J. Wysocki
[not found] <Pine.LNX.4.44L0.1005271141410.3239-100000@iolanthe.rowland.org>
2010-05-27 16:06 ` Thomas Gleixner
[not found] ` <alpine.LFD.2.00.1005271751240.3032@localhost.localdomain>
2010-05-27 21:00 ` Rafael J. Wysocki
2010-06-03 4:24 ` Paul Mundt
[not found] ` <20100603042403.GC20028@linux-sh.org>
2010-06-03 6:58 ` Brian Swetland
[not found] ` <AANLkTinxP73uOG4XtnTtS1LZnWDvvgpAFN5Uv_xdKEwk@mail.gmail.com>
2010-06-03 8:14 ` Peter Zijlstra
[not found] <1274974479.27810.5247.camel@twins>
2010-05-27 15:47 ` Alan Stern
[not found] <alpine.LFD.2.00.1005271545190.3032@localhost.localdomain>
2010-05-27 15:06 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005271053420.3239-100000@iolanthe.rowland.org>
2010-05-27 15:09 ` Peter Zijlstra
2010-05-27 15:31 ` Alan Cox
[not found] ` <1274972956.27810.5161.camel@twins>
2010-05-27 15:33 ` Alan Cox
[not found] ` <20100527163359.23e83bdd@lxorguk.ukuu.org.uk>
2010-05-27 15:34 ` Peter Zijlstra
2010-05-27 16:27 ` Felipe Balbi
2010-05-29 3:10 ` mark gross
[not found] <20100526151945.1b3813ac@schatten.dmk.lab>
2010-05-26 14:38 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1005261033440.1961-100000@iolanthe.rowland.org>
2010-05-27 10:56 ` Florian Mickler
[not found] ` <20100527125605.2855f980@schatten.dmk.lab>
2010-05-27 12:27 ` Igor Stoppa
2010-05-27 12:28 ` Igor Stoppa
2010-05-21 22:46 Arve Hjønnevåg
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=20100527174131.18fd1c72@lxorguk.ukuu.org.uk \
--to=alan@lxorguk.ukuu.org.uk \
--cc=Linux@smtp1.linux-foundation.org \
--cc=Paul@smtp1.linux-foundation.org \
--cc=felipe.balbi@nokia.com \
--cc=florian@mickler.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=mjg59@srcf.ucam.org \
--cc=peterz@infradead.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