From: "Arve Hjønnevåg" <arve@android.com>
To: linux-pm@lists.linux-foundation.org, linux-kernel@vger.kernel.org
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
"Arve Hjønnevåg" <arve@android.com>,
"Pavel Machek" <pavel@ucw.cz>, "Tejun Heo" <tj@kernel.org>,
"Len Brown" <len.brown@intel.com>,
"Jesse Barnes" <jbarnes@virtuousgeek.org>,
"Magnus Damm" <damm@igel.co.jp>,
"Wu Fengguang" <fengguang.wu@intel.com>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Maxim Levitsky" <maximlevitsky@gmail.com>
Subject: [PATCH 5/8] PM: suspend_block: Add suspend_blocker stats
Date: Fri, 21 May 2010 15:46:52 -0700 [thread overview]
Message-ID: <1274482015-30899-6-git-send-email-arve@android.com> (raw)
In-Reply-To: <1274482015-30899-5-git-send-email-arve@android.com>
Report suspend block stats in /sys/kernel/debug/suspend_blockers.
Signed-off-by: Arve Hjønnevåg <arve@android.com>
---
include/linux/suspend_blocker.h | 27 +++++-
kernel/power/Kconfig | 8 ++
kernel/power/opportunistic_suspend.c | 195 +++++++++++++++++++++++++++++++++-
kernel/power/power.h | 5 +
kernel/power/suspend.c | 4 +-
5 files changed, 235 insertions(+), 4 deletions(-)
diff --git a/include/linux/suspend_blocker.h b/include/linux/suspend_blocker.h
index 8788302..256af15 100755
--- a/include/linux/suspend_blocker.h
+++ b/include/linux/suspend_blocker.h
@@ -17,11 +17,35 @@
#define _LINUX_SUSPEND_BLOCKER_H
#include <linux/list.h>
+#include <linux/ktime.h>
+
+/**
+ * struct suspend_blocker_stats - statistics for a suspend blocker
+ *
+ * @count: Number of times this blocker has been deacivated.
+ * @wakeup_count: Number of times this blocker was the first to block suspend
+ * after resume.
+ * @total_time: Total time this suspend blocker has prevented suspend.
+ * @prevent_suspend_time: Time this suspend blocker has prevented suspend while
+ * user-space requested suspend.
+ * @max_time: Max time this suspend blocker has been continuously active.
+ * @last_time: Monotonic clock when the active state last changed.
+ */
+struct suspend_blocker_stats {
+#ifdef CONFIG_SUSPEND_BLOCKER_STATS
+ unsigned int count;
+ unsigned int wakeup_count;
+ ktime_t total_time;
+ ktime_t prevent_suspend_time;
+ ktime_t max_time;
+ ktime_t last_time;
+#endif
+};
/**
* struct suspend_blocker - the basic suspend_blocker structure
* @link: List entry for active or inactive list.
- * @flags: Tracks initialized and active state.
+ * @flags: Tracks initialized and active state and statistics.
* @name: Suspend blocker name used for debugging.
*
* When a suspend_blocker is active it prevents the system from entering
@@ -34,6 +58,7 @@ struct suspend_blocker {
struct list_head link;
int flags;
const char *name;
+ struct suspend_blocker_stats stat;
#endif
};
diff --git a/kernel/power/Kconfig b/kernel/power/Kconfig
index 2e665cd..16a2570 100644
--- a/kernel/power/Kconfig
+++ b/kernel/power/Kconfig
@@ -146,6 +146,14 @@ config OPPORTUNISTIC_SUSPEND
determines the sleep state the system will be put into when there are
no active suspend blockers.
+config SUSPEND_BLOCKER_STATS
+ bool "Suspend blockers statistics"
+ depends on OPPORTUNISTIC_SUSPEND
+ default y
+ ---help---
+ Use /sys/kernel/debug/suspend_blockers to report suspend blockers
+ statistics.
+
config USER_SUSPEND_BLOCKERS
bool "User space suspend blockers"
depends on OPPORTUNISTIC_SUSPEND
diff --git a/kernel/power/opportunistic_suspend.c b/kernel/power/opportunistic_suspend.c
index 6b5eb1d..a8824ba 100644
--- a/kernel/power/opportunistic_suspend.c
+++ b/kernel/power/opportunistic_suspend.c
@@ -39,6 +39,7 @@ module_param_named(unknown_wakeup_delay_msecs, unknown_wakeup_delay_msecs, int,
#define SB_INITIALIZED (1U << 8)
#define SB_ACTIVE (1U << 9)
+#define SB_PREVENTING_SUSPEND (1U << 10)
DEFINE_SUSPEND_BLOCKER(main_suspend_blocker, main);
@@ -51,6 +52,117 @@ static suspend_state_t requested_suspend_state = PM_SUSPEND_MEM;
static bool enable_suspend_blockers;
static DEFINE_SUSPEND_BLOCKER(unknown_wakeup, unknown_wakeups);
+#ifdef CONFIG_SUSPEND_BLOCKER_STATS
+static struct suspend_blocker_stats dropped_suspend_blockers;
+static ktime_t last_sleep_time_update;
+static bool wait_for_wakeup;
+
+static void suspend_blocker_stat_init(struct suspend_blocker_stats *stat)
+{
+ stat->count = 0;
+ stat->wakeup_count = 0;
+ stat->total_time = ktime_set(0, 0);
+ stat->prevent_suspend_time = ktime_set(0, 0);
+ stat->max_time = ktime_set(0, 0);
+ stat->last_time = ktime_set(0, 0);
+}
+
+static void init_dropped_suspend_blockers(void)
+{
+ suspend_blocker_stat_init(&dropped_suspend_blockers);
+}
+
+static void suspend_blocker_stat_drop(struct suspend_blocker_stats *stat)
+{
+ if (!stat->count)
+ return;
+
+ dropped_suspend_blockers.count += stat->count;
+ dropped_suspend_blockers.total_time = ktime_add(
+ dropped_suspend_blockers.total_time, stat->total_time);
+ dropped_suspend_blockers.prevent_suspend_time = ktime_add(
+ dropped_suspend_blockers.prevent_suspend_time,
+ stat->prevent_suspend_time);
+ dropped_suspend_blockers.max_time = ktime_add(
+ dropped_suspend_blockers.max_time, stat->max_time);
+}
+
+static void suspend_unblock_stat(struct suspend_blocker *blocker)
+{
+ struct suspend_blocker_stats *stat = &blocker->stat;
+ ktime_t duration;
+ ktime_t now;
+
+ if (!(blocker->flags & SB_ACTIVE))
+ return;
+
+ now = ktime_get();
+ stat->count++;
+ duration = ktime_sub(now, stat->last_time);
+ stat->total_time = ktime_add(stat->total_time, duration);
+ if (ktime_to_ns(duration) > ktime_to_ns(stat->max_time))
+ stat->max_time = duration;
+
+ stat->last_time = ktime_get();
+ if (blocker->flags & SB_PREVENTING_SUSPEND) {
+ duration = ktime_sub(now, last_sleep_time_update);
+ stat->prevent_suspend_time = ktime_add(
+ stat->prevent_suspend_time, duration);
+ blocker->flags &= ~SB_PREVENTING_SUSPEND;
+ }
+}
+
+static void suspend_block_stat(struct suspend_blocker *blocker)
+{
+ if (wait_for_wakeup) {
+ if (debug_mask & DEBUG_WAKEUP)
+ pr_info("wakeup suspend blocker: %s\n", blocker->name);
+
+ wait_for_wakeup = false;
+ blocker->stat.wakeup_count++;
+ }
+ if (!(blocker->flags & SB_ACTIVE))
+ blocker->stat.last_time = ktime_get();
+}
+
+static void update_sleep_wait_stats(bool done)
+{
+ struct suspend_blocker *blocker;
+ ktime_t now, elapsed, add;
+
+ now = ktime_get();
+ elapsed = ktime_sub(now, last_sleep_time_update);
+ list_for_each_entry(blocker, &active_blockers, link) {
+ struct suspend_blocker_stats *stat = &blocker->stat;
+
+ if (blocker->flags & SB_PREVENTING_SUSPEND) {
+ add = elapsed;
+ stat->prevent_suspend_time = ktime_add(
+ stat->prevent_suspend_time, add);
+ }
+ if (done)
+ blocker->flags &= ~SB_PREVENTING_SUSPEND;
+ else
+ blocker->flags |= SB_PREVENTING_SUSPEND;
+ }
+ last_sleep_time_update = now;
+}
+
+void about_to_enter_suspend(void)
+{
+ wait_for_wakeup = true;
+}
+
+#else /* !CONFIG_SUSPEND_BLOCKER_STATS */
+
+static inline void init_dropped_suspend_blockers(void) {}
+static inline void suspend_blocker_stat_init(struct suspend_blocker_stats *s) {}
+static inline void suspend_blocker_stat_drop(struct suspend_blocker_stats *s) {}
+static inline void suspend_unblock_stat(struct suspend_blocker *blocker) {}
+static inline void suspend_block_stat(struct suspend_blocker *blocker) {}
+static inline void update_sleep_wait_stats(bool done) {}
+#endif /* !CONFIG_SUSPEND_BLOCKER_STATS */
+
#define pr_info_time(fmt, args...) \
do { \
struct timespec ts; \
@@ -140,6 +252,8 @@ void suspend_blocker_register(struct suspend_blocker *blocker)
if (debug_mask & DEBUG_SUSPEND_BLOCKER)
pr_info("%s: Registering %s\n", __func__, blocker->name);
+ suspend_blocker_stat_init(&blocker->stat);
+
blocker->flags = SB_INITIALIZED;
INIT_LIST_HEAD(&blocker->link);
@@ -177,6 +291,10 @@ void suspend_blocker_unregister(struct suspend_blocker *blocker)
return;
spin_lock_irqsave(&list_lock, irqflags);
+
+ suspend_unblock_stat(blocker);
+ suspend_blocker_stat_drop(&blocker->stat);
+
blocker->flags &= ~SB_INITIALIZED;
list_del(&blocker->link);
if ((blocker->flags & SB_ACTIVE) && list_empty(&active_blockers))
@@ -206,11 +324,18 @@ void suspend_block(struct suspend_blocker *blocker)
if (debug_mask & DEBUG_SUSPEND_BLOCKER)
pr_info("%s: %s\n", __func__, blocker->name);
+ suspend_block_stat(blocker);
+
blocker->flags |= SB_ACTIVE;
list_move(&blocker->link, &active_blockers);
current_event_num++;
+ if (blocker == &main_suspend_blocker)
+ update_sleep_wait_stats(true);
+ else if (!suspend_blocker_is_active(&main_suspend_blocker))
+ update_sleep_wait_stats(false);
+
spin_unlock_irqrestore(&list_lock, irqflags);
}
EXPORT_SYMBOL(suspend_block);
@@ -235,13 +360,19 @@ void suspend_unblock(struct suspend_blocker *blocker)
if (debug_mask & DEBUG_SUSPEND_BLOCKER)
pr_info("%s: %s\n", __func__, blocker->name);
+ suspend_unblock_stat(blocker);
+
list_move(&blocker->link, &inactive_blockers);
if ((blocker->flags & SB_ACTIVE) && list_empty(&active_blockers))
queue_work(pm_wq, &suspend_work);
blocker->flags &= ~(SB_ACTIVE);
- if ((debug_mask & DEBUG_SUSPEND) && blocker == &main_suspend_blocker)
- print_active_suspend_blockers();
+ if (blocker == &main_suspend_blocker) {
+ if (debug_mask & DEBUG_SUSPEND)
+ print_active_suspend_blockers();
+
+ update_sleep_wait_stats(false);
+ }
spin_unlock_irqrestore(&list_lock, irqflags);
}
@@ -297,10 +428,68 @@ void __init opportunistic_suspend_init(void)
suspend_blocker_register(&main_suspend_blocker);
suspend_block(&main_suspend_blocker);
suspend_blocker_register(&unknown_wakeup);
+ init_dropped_suspend_blockers();
}
static struct dentry *suspend_blocker_stats_dentry;
+#ifdef CONFIG_SUSPEND_BLOCKER_STATS
+static int print_blocker_stats(struct seq_file *m, const char *name,
+ struct suspend_blocker_stats *stat, int flags)
+{
+ int lock_count = stat->count;
+ ktime_t active_time = ktime_set(0, 0);
+ ktime_t total_time = stat->total_time;
+ ktime_t max_time = stat->max_time;
+ ktime_t prevent_suspend_time = stat->prevent_suspend_time;
+
+ if (flags & SB_ACTIVE) {
+ ktime_t now, add_time;
+
+ now = ktime_get();
+ add_time = ktime_sub(now, stat->last_time);
+ lock_count++;
+ active_time = add_time;
+ total_time = ktime_add(total_time, add_time);
+ if (flags & SB_PREVENTING_SUSPEND)
+ prevent_suspend_time = ktime_add(prevent_suspend_time,
+ ktime_sub(now, last_sleep_time_update));
+ if (add_time.tv64 > max_time.tv64)
+ max_time = add_time;
+ }
+
+ return seq_printf(m, "\"%s\"\t%d\t%d\t%lld\t%lld\t%lld\t%lld\t%lld\n",
+ name, lock_count, stat->wakeup_count,
+ ktime_to_ns(active_time), ktime_to_ns(total_time),
+ ktime_to_ns(prevent_suspend_time),
+ ktime_to_ns(max_time),
+ ktime_to_ns(stat->last_time));
+}
+
+static int suspend_blocker_stats_show(struct seq_file *m, void *unused)
+{
+ unsigned long irqflags;
+ struct suspend_blocker *blocker;
+
+ seq_puts(m, "name\tcount\twake_count\tactive_since"
+ "\ttotal_time\tsleep_time\tmax_time\tlast_change\n");
+
+ spin_lock_irqsave(&list_lock, irqflags);
+ list_for_each_entry(blocker, &active_blockers, link)
+ print_blocker_stats(m,
+ blocker->name, &blocker->stat, blocker->flags);
+
+ list_for_each_entry(blocker, &inactive_blockers, link)
+ print_blocker_stats(m,
+ blocker->name, &blocker->stat, blocker->flags);
+
+ print_blocker_stats(m, "deleted", &dropped_suspend_blockers, 0);
+ spin_unlock_irqrestore(&list_lock, irqflags);
+ return 0;
+}
+
+#else
+
static int suspend_blocker_stats_show(struct seq_file *m, void *unused)
{
unsigned long irqflags;
@@ -316,6 +505,8 @@ static int suspend_blocker_stats_show(struct seq_file *m, void *unused)
return 0;
}
+#endif
+
static int suspend_blocker_stats_open(struct inode *inode, struct file *file)
{
return single_open(file, suspend_blocker_stats_show, NULL);
diff --git a/kernel/power/power.h b/kernel/power/power.h
index 2e9cfd5..e13c975 100644
--- a/kernel/power/power.h
+++ b/kernel/power/power.h
@@ -245,3 +245,8 @@ extern void __init opportunistic_suspend_init(void);
#else
static inline void opportunistic_suspend_init(void) {}
#endif
+#ifdef CONFIG_SUSPEND_BLOCKER_STATS
+void about_to_enter_suspend(void);
+#else
+static inline void about_to_enter_suspend(void) {}
+#endif
diff --git a/kernel/power/suspend.c b/kernel/power/suspend.c
index 9eb3876..df694e7 100644
--- a/kernel/power/suspend.c
+++ b/kernel/power/suspend.c
@@ -158,8 +158,10 @@ static int suspend_enter(suspend_state_t state)
error = sysdev_suspend(PMSG_SUSPEND);
if (!error) {
- if (!suspend_is_blocked() && !suspend_test(TEST_CORE))
+ if (!suspend_is_blocked() && !suspend_test(TEST_CORE)) {
+ about_to_enter_suspend();
error = suspend_ops->enter(state);
+ }
sysdev_resume();
}
--
1.6.5.1
next prev parent reply other threads:[~2010-05-21 22:47 UTC|newest]
Thread overview: 1473+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-21 22:46 [PATCH 0/8] Suspend block api (version 8) Arve Hjønnevåg
2010-05-21 22:46 ` [PATCH 1/8] PM: Opportunistic suspend support Arve Hjønnevåg
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-21 22:46 ` [PATCH 3/8] PM: suspend_block: Abort task freezing if a suspend_blocker is active Arve Hjønnevåg
2010-05-21 22:46 ` [PATCH 4/8] PM: suspend_block: Add debugfs file Arve Hjønnevåg
2010-05-21 22:46 ` Arve Hjønnevåg
2010-05-21 22:46 ` [PATCH 5/8] PM: suspend_block: Add suspend_blocker stats Arve Hjønnevåg
2010-05-21 22:46 ` Arve Hjønnevåg [this message]
2010-05-21 22:46 ` [PATCH 6/8] PM: Add suspend blocking work Arve Hjønnevåg
2010-05-21 22:46 ` [PATCH 7/8] Input: Block suspend while event queue is not empty Arve Hjønnevåg
2010-05-21 22:46 ` Arve Hjønnevåg
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-21 22:46 ` Arve Hjønnevåg
2010-05-21 22:46 ` [PATCH 6/8] PM: Add suspend blocking work Arve Hjønnevåg
2010-05-21 22:46 ` [PATCH 3/8] PM: suspend_block: Abort task freezing if a suspend_blocker is active 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
2010-05-26 8:43 ` Peter Zijlstra
2010-05-26 10:47 ` Arve Hjønnevåg
2010-05-26 10:50 ` Peter Zijlstra
2010-05-26 23:13 ` Arve Hjønnevåg
2010-05-26 23:13 ` Arve Hjønnevåg
2010-05-26 10:50 ` Peter Zijlstra
2010-05-26 10:51 ` Florian Mickler
2010-05-26 10:51 ` Florian Mickler
2010-05-26 11:06 ` Peter Zijlstra
2010-05-26 11:06 ` Peter Zijlstra
2010-05-26 10:47 ` Arve Hjønnevåg
2010-05-26 21:57 ` Rafael J. Wysocki
2010-05-26 22:14 ` Alan Cox
2010-05-26 22:18 ` Brian Swetland
2010-05-26 23:00 ` Alan Cox
2010-05-26 23:00 ` Arve Hjønnevåg
2010-05-26 23:52 ` Alan Cox
2010-05-26 22:45 ` Rafael J. Wysocki
2010-05-26 22:18 ` Alan Stern
2010-05-26 22:18 ` Alan Stern
2010-05-26 22:18 ` [linux-pm] " Alan Stern
2010-05-26 22:34 ` Rafael J. Wysocki
2010-05-26 22:34 ` [linux-pm] " Rafael J. Wysocki
2010-05-26 21:57 ` Rafael J. Wysocki
2010-05-21 22:46 ` Arve Hjønnevåg
2010-05-22 2:47 ` [PATCH 1/8] PM: Opportunistic suspend support Alan Stern
2010-05-25 1:05 ` Arve Hjønnevåg
2010-05-25 1:34 ` Alan Stern
2010-05-25 16:57 ` Dmitry Torokhov
2010-05-25 16:57 ` Dmitry Torokhov
2010-05-25 18:08 ` Alan Stern
2010-05-25 18:08 ` Alan Stern
2010-05-25 18:24 ` Dmitry Torokhov
2010-05-25 18:24 ` Dmitry Torokhov
2010-05-25 18:35 ` Alan Stern
2010-05-25 18:35 ` Alan Stern
2010-05-25 18:47 ` Dmitry Torokhov
2010-05-25 19:05 ` Alan Stern
2010-05-25 19:05 ` Alan Stern
2010-05-25 22:23 ` Arve Hjønnevåg
2010-05-25 22:32 ` Dmitry Torokhov
2010-05-25 22:32 ` Dmitry Torokhov
2010-05-25 22:37 ` Arve Hjønnevåg
2010-05-25 22:37 ` Arve Hjønnevåg
2010-05-25 22:55 ` Dmitry Torokhov
2010-05-25 23:13 ` Arve Hjønnevåg
2010-05-25 23:13 ` Arve Hjønnevåg
2010-05-25 23:26 ` Dmitry Torokhov
2010-05-25 23:26 ` Dmitry Torokhov
2010-05-25 23:54 ` Arve Hjønnevåg
2010-05-26 0:26 ` Dmitry Torokhov
2010-05-26 0:26 ` Dmitry Torokhov
2010-05-26 0:36 ` Arve Hjønnevåg
2010-05-26 0:36 ` Arve Hjønnevåg
2010-05-25 23:54 ` Arve Hjønnevåg
2010-05-26 13:59 ` Alan Stern
2010-05-26 13:59 ` Alan Stern
2010-05-26 21:51 ` Rafael J. Wysocki
2010-05-26 21:51 ` Rafael J. Wysocki
2010-05-26 22:12 ` Alan Stern
2010-05-26 22:12 ` Alan Stern
2010-05-26 22:47 ` Rafael J. Wysocki
2010-05-26 22:47 ` Rafael J. Wysocki
2010-05-26 23:09 ` Arve Hjønnevåg
2010-05-26 23:09 ` Arve Hjønnevåg
2010-05-27 0:47 ` Alan Stern
2010-05-27 0:47 ` Alan Stern
2010-05-27 0:52 ` Arve Hjønnevåg
2010-05-27 0:52 ` Arve Hjønnevåg
2010-05-27 14:09 ` Alan Stern
2010-05-27 14:09 ` Alan Stern
2010-05-27 18:13 ` Dmitry Torokhov
2010-05-27 18:13 ` Dmitry Torokhov
2010-05-27 20:00 ` Rafael J. Wysocki
2010-05-27 20:00 ` Rafael J. Wysocki
2010-05-27 23:36 ` Arve Hjønnevåg
2010-05-27 23:48 ` Dmitry Torokhov
2010-05-27 23:48 ` Dmitry Torokhov
2010-05-27 23:52 ` Arve Hjønnevåg
2010-05-27 23:52 ` Arve Hjønnevåg
2010-05-27 23:36 ` Arve Hjønnevåg
2010-05-25 22:55 ` Dmitry Torokhov
2010-05-25 22:59 ` Kevin Hilman
2010-05-26 0:04 ` Arve Hjønnevåg
2010-05-26 0:04 ` Arve Hjønnevåg
2010-05-25 22:59 ` Kevin Hilman
2010-05-25 22:23 ` Arve Hjønnevåg
2010-05-25 18:47 ` Dmitry Torokhov
2010-05-25 19:47 ` Rafael J. Wysocki
2010-05-25 19:53 ` Dmitry Torokhov
2010-05-25 19:53 ` Dmitry Torokhov
2010-05-25 20:21 ` Rafael J. Wysocki
2010-05-25 20:21 ` Rafael J. Wysocki
2010-05-25 20:44 ` Dmitry Torokhov
2010-05-25 20:44 ` Dmitry Torokhov
2010-05-25 21:04 ` [linux-pm] " Vitaly Wool
2010-05-25 21:04 ` Vitaly Wool
2010-05-25 21:15 ` Rafael J. Wysocki
2010-05-25 21:15 ` Rafael J. Wysocki
2010-05-25 21:00 ` Alan Stern
2010-05-25 21:00 ` Alan Stern
2010-05-25 21:44 ` Rafael J. Wysocki
2010-05-25 22:33 ` Arve Hjønnevåg
2010-05-25 22:33 ` Arve Hjønnevåg
2010-05-26 8:42 ` Peter Zijlstra
2010-05-26 8:42 ` Peter Zijlstra
2010-05-26 8:53 ` Peter Zijlstra
2010-05-26 12:49 ` Matthew Garrett
2010-05-26 12:57 ` Peter Zijlstra
2010-05-26 12:57 ` Peter Zijlstra
2010-05-26 13:20 ` Matthew Garrett
2010-05-26 13:20 ` Matthew Garrett
2010-05-26 22:03 ` Rafael J. Wysocki
2010-05-26 22:03 ` Rafael J. Wysocki
2010-05-27 7:23 ` Neil Brown
2010-05-27 7:23 ` Neil Brown
2010-05-29 2:52 ` [linux-pm] " mark gross
2010-05-29 4:04 ` Arve Hjønnevåg
2010-05-29 4:04 ` Arve Hjønnevåg
2010-05-29 2:52 ` mark gross
2010-05-26 12:49 ` Matthew Garrett
2010-05-26 8:53 ` Peter Zijlstra
2010-05-26 9:23 ` Florian Mickler
2010-05-26 9:33 ` Peter Zijlstra
2010-05-26 9:54 ` Arve Hjønnevåg
2010-05-26 10:06 ` Peter Zijlstra
2010-05-26 10:17 ` Arve Hjønnevåg
2010-05-26 10:21 ` Peter Zijlstra
2010-05-26 10:29 ` Pekka Enberg
2010-05-26 16:18 ` James Bottomley
2010-05-26 16:28 ` Peter Zijlstra
2010-05-26 16:28 ` Peter Zijlstra
2010-05-26 16:38 ` Kevin Hilman
2010-05-26 16:38 ` Kevin Hilman
2010-05-26 16:54 ` James Bottomley
2010-05-26 16:54 ` James Bottomley
2010-05-26 17:00 ` Peter Zijlstra
2010-05-26 17:00 ` Peter Zijlstra
2010-05-26 17:14 ` James Bottomley
2010-05-26 17:23 ` Peter Zijlstra
2010-05-26 17:23 ` Peter Zijlstra
2010-05-26 17:33 ` James Bottomley
2010-05-26 17:42 ` Pavel Machek
2010-05-26 17:42 ` Pavel Machek
2010-05-26 18:09 ` James Bottomley
2010-05-26 18:09 ` James Bottomley
2010-05-26 17:33 ` James Bottomley
2010-05-26 17:28 ` Pavel Machek
2010-05-26 17:28 ` Pavel Machek
2010-05-26 19:15 ` Florian Mickler
2010-05-26 22:10 ` Rafael J. Wysocki
2010-05-26 22:10 ` Rafael J. Wysocki
2010-05-27 8:13 ` Bernd Petrovitsch
2010-05-27 8:13 ` Bernd Petrovitsch
2010-05-26 19:15 ` Florian Mickler
2010-05-26 17:14 ` James Bottomley
2010-05-26 16:59 ` Pavel Machek
2010-05-26 17:01 ` Peter Zijlstra
2010-05-26 17:01 ` Peter Zijlstra
2010-05-26 17:24 ` James Bottomley
2010-05-26 17:51 ` Thomas Gleixner
2010-05-26 17:51 ` Thomas Gleixner
2010-05-26 18:23 ` James Bottomley
2010-05-26 18:23 ` James Bottomley
2010-05-26 18:50 ` Valdis.Kletnieks
2010-05-26 18:50 ` Valdis.Kletnieks
2010-05-26 20:06 ` James Bottomley
2010-05-26 20:06 ` James Bottomley
2010-05-27 8:17 ` Bernd Petrovitsch
2010-05-27 8:17 ` Bernd Petrovitsch
2010-05-27 9:07 ` Arve Hjønnevåg
2010-05-27 9:07 ` Arve Hjønnevåg
2010-05-28 3:50 ` Just fix the bug - " Neil Brown
2010-05-28 4:57 ` Arve Hjønnevåg
2010-05-28 6:06 ` Neil Brown
2010-05-28 6:37 ` Arve Hjønnevåg
2010-05-28 13:35 ` Pavel Machek
2010-05-28 14:26 ` Florian Mickler
2010-05-26 22:25 ` Rafael J. Wysocki
2010-05-26 22:25 ` Rafael J. Wysocki
2010-05-26 17:24 ` James Bottomley
2010-05-26 22:13 ` Rafael J. Wysocki
2010-05-26 22:13 ` Rafael J. Wysocki
2010-05-26 16:59 ` Pavel Machek
2010-05-26 17:25 ` Pekka Enberg
2010-05-26 17:40 ` James Bottomley
2010-05-26 17:40 ` James Bottomley
2010-05-26 18:07 ` Pekka Enberg
2010-05-26 18:07 ` Pekka Enberg
2010-05-26 17:25 ` Pekka Enberg
2010-05-26 16:18 ` James Bottomley
2010-05-26 10:29 ` Pekka Enberg
2010-05-26 10:30 ` Arve Hjønnevåg
2010-05-26 10:35 ` Pekka Enberg
2010-05-26 10:35 ` Pekka Enberg
2010-05-26 11:16 ` Vitaly Wool
2010-05-26 11:16 ` [linux-pm] " Vitaly Wool
2010-05-26 10:30 ` Arve Hjønnevåg
2010-05-26 20:51 ` Linus Walleij
2010-05-27 7:34 ` Neil Brown
2010-05-27 7:34 ` Neil Brown
2010-05-26 10:21 ` Peter Zijlstra
2010-05-26 10:17 ` Arve Hjønnevåg
2010-05-26 10:06 ` Peter Zijlstra
2010-05-26 9:54 ` Arve Hjønnevåg
2010-05-26 9:33 ` Peter Zijlstra
2010-05-26 9:23 ` Florian Mickler
2010-05-26 8:42 ` Peter Zijlstra
2010-05-26 8:42 ` Peter Zijlstra
2010-05-25 21:44 ` Rafael J. Wysocki
2010-05-25 23:00 ` Kevin Hilman
2010-05-25 23:00 ` Kevin Hilman
2010-05-26 8:43 ` Peter Zijlstra
2010-05-26 8:43 ` Peter Zijlstra
2010-05-25 19:47 ` Rafael J. Wysocki
2010-05-25 1:34 ` Alan Stern
2010-05-25 1:05 ` Arve Hjønnevåg
2010-05-22 2:47 ` Alan Stern
2010-05-21 22:46 ` Arve Hjønnevåg
2010-05-24 0:46 ` [PATCH 0/8] Suspend block api (version 8) Rafael J. Wysocki
2010-05-24 4:32 ` Felipe Balbi
2010-05-24 4:32 ` Felipe Balbi
2010-05-24 18:49 ` Rafael J. Wysocki
2010-05-24 18:49 ` Rafael J. Wysocki
2010-05-24 22:51 ` Kevin Hilman
2010-05-24 22:51 ` Kevin Hilman
2010-05-24 23:38 ` Rafael J. Wysocki
2010-05-24 23:38 ` Rafael J. Wysocki
2010-05-26 8:47 ` Peter Zijlstra
2010-05-26 8:47 ` Peter Zijlstra
2010-05-26 9:41 ` Arve Hjønnevåg
2010-05-26 9:41 ` Arve Hjønnevåg
2010-05-26 9:41 ` Arve Hjønnevåg
2010-05-26 9:45 ` Peter Zijlstra
2010-05-26 9:45 ` Peter Zijlstra
2010-05-26 9:49 ` Brian Swetland
2010-05-26 9:49 ` Brian Swetland
2010-05-26 10:02 ` Florian Mickler
2010-05-26 10:02 ` Florian Mickler
2010-05-26 10:08 ` Peter Zijlstra
2010-05-26 10:19 ` Florian Mickler
2010-05-26 10:19 ` Florian Mickler
2010-05-26 10:08 ` Peter Zijlstra
2010-05-26 11:18 ` [linux-pm] " Vitaly Wool
2010-05-26 11:37 ` Florian Mickler
2010-05-26 11:37 ` [linux-pm] " Florian Mickler
2010-05-26 12:01 ` Vitaly Wool
2010-05-26 12:24 ` Florian Mickler
2010-05-26 12:29 ` Felipe Balbi
2010-05-26 12:33 ` Florian Mickler
2010-05-26 12:35 ` Felipe Balbi
2010-05-26 12:54 ` Florian Mickler
2010-05-26 12:54 ` [linux-pm] " Florian Mickler
2010-05-26 13:06 ` Peter Zijlstra
2010-05-26 13:06 ` Peter Zijlstra
2010-05-26 13:19 ` [linux-pm] " Alan Cox
2010-05-26 13:39 ` Florian Mickler
2010-05-26 13:39 ` Florian Mickler
2010-05-26 13:19 ` Alan Cox
2010-05-27 8:58 ` [linux-pm] " Felipe Contreras
2010-05-27 8:58 ` Felipe Contreras
2010-05-26 12:35 ` Felipe Balbi
2010-05-26 12:41 ` Peter Zijlstra
2010-05-26 12:41 ` [linux-pm] " Peter Zijlstra
2010-05-26 13:03 ` Florian Mickler
2010-05-26 13:07 ` Peter Zijlstra
2010-05-26 13:30 ` Florian Mickler
2010-05-26 13:30 ` [linux-pm] " Florian Mickler
2010-05-26 13:07 ` Peter Zijlstra
2010-05-26 13:03 ` Florian Mickler
2010-05-26 12:33 ` Florian Mickler
2010-05-26 12:29 ` Felipe Balbi
2010-05-26 12:55 ` Vitaly Wool
2010-05-26 12:55 ` [linux-pm] " Vitaly Wool
2010-05-26 13:19 ` Florian Mickler
2010-05-26 13:19 ` [linux-pm] " Florian Mickler
2010-05-26 14:38 ` Alan Stern
2010-05-26 14:38 ` Alan Stern
2010-05-27 10:56 ` Florian Mickler
2010-05-27 10:56 ` Florian Mickler
2010-05-27 12:27 ` Igor Stoppa
2010-05-27 12:27 ` Igor Stoppa
2010-05-27 12:28 ` Igor Stoppa
2010-05-27 12:28 ` [linux-pm] " Igor Stoppa
2010-05-27 10:56 ` Florian Mickler
2010-05-26 14:38 ` Alan Stern
2010-05-26 13:16 ` [linux-pm] " Alan Cox
2010-05-26 13:46 ` Thomas Gleixner
2010-05-26 13:46 ` [linux-pm] " Thomas Gleixner
2010-05-26 15:33 ` Felipe Balbi
2010-05-26 15:33 ` [linux-pm] " Felipe Balbi
2010-05-26 15:11 ` Florian Mickler
2010-05-26 15:12 ` Peter Zijlstra
2010-05-26 15:12 ` [linux-pm] " Peter Zijlstra
2010-05-26 15:15 ` Peter Zijlstra
2010-05-26 15:15 ` [linux-pm] " Peter Zijlstra
2010-05-26 15:40 ` Florian Mickler
2010-05-26 15:45 ` Peter Zijlstra
2010-05-26 15:45 ` [linux-pm] " Peter Zijlstra
2010-05-26 15:47 ` Florian Mickler
2010-05-26 15:47 ` [linux-pm] " Florian Mickler
2010-05-26 15:49 ` Florian Mickler
2010-05-26 15:49 ` Florian Mickler
2010-05-26 15:40 ` Florian Mickler
2010-05-26 15:16 ` [linux-pm] " Peter Zijlstra
2010-05-26 15:16 ` Peter Zijlstra
2010-05-26 15:45 ` Alan Cox
2010-05-26 15:45 ` [linux-pm] " Alan Cox
2010-05-26 17:22 ` Thomas Gleixner
2010-05-26 18:02 ` Alan Cox
2010-05-26 19:56 ` Florian Mickler
2010-05-26 19:56 ` [linux-pm] " Florian Mickler
2010-05-26 20:03 ` Vitaly Wool
2010-05-27 5:11 ` Florian Mickler
2010-05-27 5:11 ` [linux-pm] " Florian Mickler
2010-05-27 13:35 ` Thomas Gleixner
2010-05-27 13:35 ` [linux-pm] " Thomas Gleixner
2010-05-28 7:25 ` Florian Mickler
2010-05-28 7:25 ` Florian Mickler
2010-05-26 20:03 ` Vitaly Wool
2010-05-27 13:26 ` Thomas Gleixner
2010-05-27 13:26 ` [linux-pm] " Thomas Gleixner
2010-05-26 18:02 ` Alan Cox
2010-05-26 19:54 ` [linux-pm] " Florian Mickler
2010-05-26 22:09 ` Alan Cox
2010-05-27 5:14 ` Florian Mickler
2010-05-27 7:43 ` Vitaly Wool
2010-05-27 7:43 ` [linux-pm] " Vitaly Wool
2010-05-27 5:14 ` Florian Mickler
2010-05-26 22:09 ` Alan Cox
2010-05-27 13:37 ` Thomas Gleixner
2010-05-27 13:37 ` [linux-pm] " Thomas Gleixner
2010-05-26 19:54 ` Florian Mickler
2010-05-26 17:22 ` Thomas Gleixner
2010-05-26 15:11 ` Florian Mickler
2010-05-26 15:19 ` Kevin Hilman
2010-05-26 15:19 ` [linux-pm] " Kevin Hilman
2010-05-26 22:30 ` Arve Hjønnevåg
2010-05-26 22:30 ` Arve Hjønnevåg
2010-05-26 23:39 ` Alan Cox
2010-05-26 23:39 ` [linux-pm] " Alan Cox
2010-05-27 0:49 ` Arve Hjønnevåg
2010-05-27 0:49 ` Arve Hjønnevåg
2010-05-27 14:29 ` Thomas Gleixner
2010-05-27 15:06 ` Alan Stern
2010-05-27 15:06 ` [linux-pm] " Alan Stern
2010-05-27 15:09 ` Peter Zijlstra
2010-05-27 15:09 ` [linux-pm] " Peter Zijlstra
2010-05-27 15:33 ` Alan Cox
2010-05-27 15:34 ` Peter Zijlstra
2010-05-27 15:47 ` Alan Stern
2010-05-27 16:06 ` Thomas Gleixner
2010-05-27 16:06 ` [linux-pm] " Thomas Gleixner
2010-05-27 21:00 ` Rafael J. Wysocki
2010-05-27 21:00 ` Rafael J. Wysocki
2010-05-27 15:47 ` Alan Stern
2010-05-27 15:34 ` Peter Zijlstra
2010-05-27 15:33 ` Alan Cox
2010-05-27 15:31 ` [linux-pm] " Alan Cox
2010-05-27 15:31 ` Alan Cox
2010-05-27 16:27 ` Felipe Balbi
2010-05-27 16:27 ` [linux-pm] " Felipe Balbi
2010-05-27 17:04 ` Alan Stern
2010-05-27 17:13 ` Peter Zijlstra
2010-05-27 17:13 ` [linux-pm] " Peter Zijlstra
2010-05-27 17:29 ` Alan Stern
2010-05-27 17:29 ` [linux-pm] " Alan Stern
2010-05-27 17:32 ` Peter Zijlstra
2010-05-27 17:32 ` [linux-pm] " Peter Zijlstra
2010-05-27 21:10 ` Rafael J. Wysocki
2010-05-27 21:10 ` [linux-pm] " Rafael J. Wysocki
2010-05-27 21:34 ` Alan Cox
2010-05-27 21:34 ` Alan Cox
2010-05-27 17:15 ` [linux-pm] " Felipe Balbi
2010-05-27 17:15 ` Felipe Balbi
2010-05-27 17:25 ` [linux-pm] " Thomas Gleixner
2010-05-27 17:41 ` Alan Stern
2010-05-27 17:41 ` [linux-pm] " Alan Stern
2010-05-27 21:15 ` Rafael J. Wysocki
2010-05-27 21:15 ` [linux-pm] " Rafael J. Wysocki
2010-05-27 21:29 ` Alan Cox
2010-05-27 21:29 ` [linux-pm] " Alan Cox
2010-05-27 21:40 ` Thomas Gleixner
2010-05-27 21:40 ` [linux-pm] " Thomas Gleixner
2010-05-27 23:43 ` Rafael J. Wysocki
2010-05-27 23:50 ` Arve Hjønnevåg
2010-05-27 23:50 ` [linux-pm] " Arve Hjønnevåg
2010-05-27 23:43 ` Rafael J. Wysocki
2010-05-27 17:25 ` Thomas Gleixner
2010-05-27 17:04 ` Alan Stern
2010-05-29 3:10 ` mark gross
2010-05-29 3:10 ` [linux-pm] " mark gross
2010-05-27 14:29 ` Thomas Gleixner
2010-05-27 0:49 ` Arve Hjønnevåg
2010-05-27 14:06 ` [linux-pm] " Matthew Garrett
2010-05-27 14:28 ` Peter Zijlstra
2010-05-27 14:35 ` Matthew Garrett
2010-05-27 14:41 ` Peter Zijlstra
2010-05-27 14:43 ` Peter Zijlstra
2010-05-27 15:10 ` Alan Cox
2010-05-27 15:10 ` [linux-pm] " Alan Cox
2010-05-27 15:07 ` Peter Zijlstra
2010-05-27 15:07 ` Peter Zijlstra
2010-05-27 16:28 ` Florian Mickler
2010-05-27 16:28 ` [linux-pm] " Florian Mickler
2010-05-27 21:17 ` Rafael J. Wysocki
2010-05-27 21:17 ` Rafael J. Wysocki
2010-05-27 14:43 ` Peter Zijlstra
2010-05-27 14:41 ` Peter Zijlstra
2010-05-27 14:35 ` Matthew Garrett
2010-05-27 14:28 ` Peter Zijlstra
2010-05-27 15:05 ` Alan Cox
2010-05-27 15:05 ` [linux-pm] " Alan Cox
2010-05-27 15:05 ` Peter Zijlstra
2010-05-27 15:05 ` [linux-pm] " Peter Zijlstra
2010-05-27 16:07 ` Matthew Garrett
2010-05-27 16:07 ` [linux-pm] " Matthew Garrett
2010-05-27 16:41 ` Alan Cox
2010-05-27 16:41 ` [linux-pm] " Alan Cox
2010-05-27 16:52 ` Matthew Garrett
2010-05-27 16:52 ` [linux-pm] " Matthew Garrett
2010-05-27 18:02 ` Alan Cox
2010-05-27 18:02 ` [linux-pm] " Alan Cox
2010-05-27 18:12 ` Matthew Garrett
2010-05-27 18:48 ` Alan Cox
2010-05-27 18:48 ` [linux-pm] " Alan Cox
2010-05-27 18:56 ` Matthew Garrett
2010-05-27 19:25 ` Alan Cox
2010-05-27 19:29 ` Matthew Garrett
2010-05-27 19:29 ` [linux-pm] " Matthew Garrett
2010-05-27 19:53 ` Alan Cox
2010-05-27 20:11 ` Matthew Garrett
2010-05-27 20:11 ` [linux-pm] " Matthew Garrett
2010-05-27 20:53 ` Alan Cox
2010-05-27 21:08 ` Matthew Garrett
2010-05-27 21:24 ` Alan Stern
2010-05-27 21:24 ` Alan Stern
2010-05-27 21:28 ` Matthew Garrett
2010-05-27 21:28 ` [linux-pm] " Matthew Garrett
2010-05-28 10:03 ` Bernd Petrovitsch
2010-05-28 11:45 ` Matthew Garrett
2010-05-28 17:12 ` Bernd Petrovitsch
2010-05-28 17:12 ` [linux-pm] " Bernd Petrovitsch
2010-05-28 11:45 ` Matthew Garrett
2010-05-28 10:03 ` Bernd Petrovitsch
2010-05-27 21:24 ` Alan Stern
2010-05-27 21:08 ` Matthew Garrett
2010-05-27 20:53 ` Alan Cox
2010-05-27 19:53 ` Alan Cox
2010-05-27 19:25 ` Alan Cox
2010-05-27 19:32 ` [linux-pm] " Zygo Blaxell
2010-05-27 19:32 ` Zygo Blaxell
2010-05-27 18:56 ` Matthew Garrett
2010-05-27 18:12 ` Matthew Garrett
2010-05-27 15:32 ` Thomas Gleixner
2010-05-27 15:32 ` [linux-pm] " Thomas Gleixner
2010-05-27 15:52 ` Matthew Garrett
2010-05-27 16:16 ` Alan Cox
2010-05-27 16:19 ` Matthew Garrett
2010-05-27 16:19 ` [linux-pm] " Matthew Garrett
2010-05-27 17:04 ` Thomas Gleixner
2010-05-27 17:07 ` Matthew Garrett
2010-05-27 17:07 ` [linux-pm] " Matthew Garrett
2010-05-27 17:13 ` Peter Zijlstra
2010-05-27 17:16 ` Matthew Garrett
2010-05-27 17:20 ` Peter Zijlstra
2010-05-27 17:20 ` [linux-pm] " Peter Zijlstra
2010-05-27 17:25 ` Matthew Garrett
2010-05-27 17:25 ` [linux-pm] " Matthew Garrett
2010-05-27 17:28 ` Peter Zijlstra
2010-05-27 17:32 ` Matthew Garrett
2010-05-27 17:35 ` Peter Zijlstra
2010-05-27 17:41 ` Matthew Garrett
2010-05-27 17:41 ` [linux-pm] " Matthew Garrett
2010-05-27 17:46 ` Peter Zijlstra
2010-05-27 17:46 ` [linux-pm] " Peter Zijlstra
2010-05-27 17:52 ` Matthew Garrett
2010-05-27 17:56 ` Peter Zijlstra
2010-05-27 17:56 ` [linux-pm] " Peter Zijlstra
2010-05-27 17:59 ` Matthew Garrett
2010-05-27 17:59 ` [linux-pm] " Matthew Garrett
2010-05-27 18:06 ` Peter Zijlstra
2010-05-27 18:17 ` Matthew Garrett
2010-05-27 18:17 ` [linux-pm] " Matthew Garrett
2010-05-27 18:22 ` Peter Zijlstra
2010-05-27 18:31 ` Matthew Garrett
2010-05-27 18:31 ` [linux-pm] " Matthew Garrett
2010-05-27 18:22 ` Peter Zijlstra
2010-05-27 19:06 ` Alan Cox
2010-05-27 19:06 ` [linux-pm] " Alan Cox
2010-05-27 18:06 ` Peter Zijlstra
2010-05-27 21:03 ` Alan Cox
2010-05-27 21:03 ` [linux-pm] " Alan Cox
2010-05-27 21:06 ` Matthew Garrett
2010-05-27 21:06 ` [linux-pm] " Matthew Garrett
2010-05-27 17:52 ` Matthew Garrett
2010-05-27 18:12 ` [linux-pm] " Thomas Gleixner
2010-05-27 18:18 ` Matthew Garrett
2010-05-27 18:18 ` Matthew Garrett
2010-05-27 18:12 ` Thomas Gleixner
2010-05-27 17:35 ` Peter Zijlstra
2010-05-27 17:32 ` Matthew Garrett
2010-05-27 17:28 ` Peter Zijlstra
2010-05-27 21:37 ` Alan Cox
2010-05-27 21:37 ` [linux-pm] " Alan Cox
2010-05-27 21:36 ` Matthew Garrett
2010-05-27 21:56 ` Alan Cox
2010-05-27 22:08 ` Matthew Garrett
2010-05-27 22:32 ` Alan Cox
2010-05-27 22:32 ` [linux-pm] " Alan Cox
2010-05-27 22:35 ` Matthew Garrett
2010-05-27 22:35 ` [linux-pm] " Matthew Garrett
2010-05-27 23:02 ` Alan Stern
2010-05-27 23:02 ` Alan Stern
2010-05-27 23:02 ` Alan Stern
2010-05-27 22:08 ` Matthew Garrett
2010-05-27 21:56 ` Alan Cox
2010-05-27 21:36 ` Matthew Garrett
2010-05-27 17:16 ` Matthew Garrett
2010-05-27 17:32 ` Alan Stern
2010-05-27 17:32 ` [linux-pm] " Alan Stern
2010-05-27 17:32 ` Alan Stern
2010-05-27 17:37 ` Peter Zijlstra
2010-05-27 21:36 ` Rafael J. Wysocki
2010-05-27 21:49 ` Alan Cox
2010-05-27 21:49 ` Alan Cox
2010-05-27 21:36 ` Rafael J. Wysocki
2010-05-27 17:37 ` Peter Zijlstra
2010-05-27 17:13 ` Peter Zijlstra
2010-05-27 17:30 ` Alan Cox
2010-05-27 17:30 ` [linux-pm] " Alan Cox
2010-05-27 17:26 ` Matthew Garrett
2010-05-27 17:26 ` [linux-pm] " Matthew Garrett
2010-05-27 17:18 ` Felipe Balbi
2010-05-27 17:18 ` [linux-pm] " Felipe Balbi
2010-05-27 17:04 ` Thomas Gleixner
2010-05-27 17:00 ` Thomas Gleixner
2010-05-27 17:00 ` [linux-pm] " Thomas Gleixner
2010-05-27 18:35 ` Zygo Blaxell
2010-05-27 18:35 ` Zygo Blaxell
2010-05-27 16:16 ` Alan Cox
2010-05-27 16:45 ` Thomas Gleixner
2010-05-27 16:45 ` [linux-pm] " Thomas Gleixner
2010-05-27 16:59 ` Matthew Garrett
2010-05-27 16:59 ` [linux-pm] " Matthew Garrett
2010-05-27 17:15 ` Thomas Gleixner
2010-05-27 17:15 ` [linux-pm] " Thomas Gleixner
2010-05-27 17:23 ` Matthew Garrett
2010-05-27 17:26 ` Peter Zijlstra
2010-05-27 17:26 ` [linux-pm] " Peter Zijlstra
2010-05-27 17:49 ` Alan Cox
2010-05-27 17:49 ` [linux-pm] " Alan Cox
2010-05-27 17:50 ` Matthew Garrett
2010-05-27 18:17 ` Alan Cox
2010-05-27 18:20 ` Matthew Garrett
2010-05-27 19:09 ` Alan Cox
2010-05-27 19:09 ` [linux-pm] " Alan Cox
2010-05-27 21:55 ` Rafael J. Wysocki
2010-05-27 21:55 ` [linux-pm] " Rafael J. Wysocki
2010-05-27 22:20 ` Alan Cox
2010-05-27 22:20 ` [linux-pm] " Alan Cox
2010-05-27 23:50 ` Rafael J. Wysocki
2010-05-27 23:50 ` [linux-pm] " Rafael J. Wysocki
2010-05-27 18:20 ` Matthew Garrett
2010-05-27 18:17 ` Alan Cox
2010-05-27 18:18 ` Thomas Gleixner
2010-05-27 18:18 ` [linux-pm] " Thomas Gleixner
2010-05-27 18:23 ` Matthew Garrett
2010-05-27 18:23 ` [linux-pm] " Matthew Garrett
2010-05-27 19:59 ` Alan Cox
2010-05-27 19:59 ` [linux-pm] " Alan Cox
2010-05-27 17:50 ` Matthew Garrett
2010-05-27 17:59 ` Thomas Gleixner
2010-05-27 17:59 ` [linux-pm] " Thomas Gleixner
2010-05-27 18:26 ` Matthew Garrett
2010-05-27 18:26 ` [linux-pm] " Matthew Garrett
2010-05-27 18:53 ` Thomas Gleixner
2010-05-27 18:53 ` [linux-pm] " Thomas Gleixner
2010-05-27 19:06 ` Matthew Garrett
2010-05-27 19:06 ` [linux-pm] " Matthew Garrett
2010-05-27 20:23 ` Thomas Gleixner
2010-05-27 20:38 ` Matthew Garrett
2010-05-27 21:26 ` Alan Stern
2010-05-27 21:26 ` [linux-pm] " Alan Stern
2010-05-27 21:26 ` Alan Stern
2010-05-27 21:33 ` Thomas Gleixner
2010-05-27 21:38 ` Matthew Garrett
2010-05-27 21:38 ` Matthew Garrett
2010-05-27 21:49 ` Alan Stern
2010-05-27 21:49 ` [linux-pm] " Alan Stern
2010-05-27 21:49 ` Alan Stern
2010-05-28 8:26 ` Thomas Gleixner
2010-05-28 8:26 ` [linux-pm] " Thomas Gleixner
2010-05-27 21:33 ` Thomas Gleixner
2010-05-27 20:38 ` Matthew Garrett
2010-05-27 20:23 ` Thomas Gleixner
2010-05-27 20:03 ` Alan Cox
2010-05-27 20:03 ` [linux-pm] " Alan Cox
2010-05-27 17:23 ` Matthew Garrett
2010-05-27 17:36 ` Alan Stern
2010-05-27 17:36 ` [linux-pm] " Alan Stern
2010-05-27 17:36 ` Alan Stern
2010-05-27 18:08 ` Thomas Gleixner
2010-05-27 18:08 ` [linux-pm] " Thomas Gleixner
2010-05-27 22:01 ` Rafael J. Wysocki
2010-05-27 22:01 ` Rafael J. Wysocki
2010-05-27 21:25 ` Alan Cox
2010-05-27 21:25 ` [linux-pm] " Alan Cox
2010-05-27 21:25 ` Alan Cox
2010-05-27 21:38 ` Alan Stern
2010-05-27 21:38 ` [linux-pm] " Alan Stern
2010-05-27 21:38 ` Alan Stern
2010-05-27 22:08 ` Alan Cox
2010-05-27 22:08 ` Alan Cox
2010-05-27 22:09 ` Matthew Garrett
2010-05-27 22:09 ` [linux-pm] " Matthew Garrett
2010-05-27 22:23 ` Alan Cox
2010-05-27 22:23 ` [linux-pm] " Alan Cox
2010-05-27 22:36 ` Matthew Garrett
2010-05-27 22:55 ` Alan Cox
2010-05-28 4:31 ` tytso
2010-05-28 4:31 ` [linux-pm] " tytso
2010-05-28 7:11 ` Peter Zijlstra
2010-05-28 7:11 ` [linux-pm] " Peter Zijlstra
2010-05-29 0:43 ` Arve Hjønnevåg
2010-05-29 0:43 ` [linux-pm] " Arve Hjønnevåg
2010-05-29 0:43 ` Arve Hjønnevåg
2010-05-29 8:10 ` Peter Zijlstra
2010-05-29 8:10 ` Peter Zijlstra
2010-05-29 14:16 ` Alan Stern
2010-05-29 14:16 ` [linux-pm] " Alan Stern
2010-05-29 8:10 ` Peter Zijlstra
2010-05-28 9:37 ` [linux-pm] " Alan Cox
2010-05-28 11:41 ` Matthew Garrett
2010-05-28 11:41 ` [linux-pm] " Matthew Garrett
2010-05-28 12:26 ` Igor Stoppa
2010-05-28 12:52 ` Brian Swetland
2010-05-28 12:52 ` [linux-pm] " Brian Swetland
2010-05-28 13:32 ` Igor Stoppa
2010-05-28 13:32 ` [linux-pm] " Igor Stoppa
2010-05-28 13:27 ` Brian Swetland
2010-05-28 13:27 ` [linux-pm] " Brian Swetland
2010-05-28 14:12 ` Igor Stoppa
2010-05-28 14:12 ` [linux-pm] " Igor Stoppa
2010-05-28 23:42 ` Felipe Contreras
2010-05-29 8:28 ` Florian Mickler
2010-05-29 8:28 ` [linux-pm] " Florian Mickler
2010-05-29 8:56 ` Florian Mickler
2010-05-29 8:56 ` [linux-pm] " Florian Mickler
2010-05-29 8:56 ` Florian Mickler
2010-05-28 23:42 ` Felipe Contreras
2010-05-28 14:20 ` Alan Cox
2010-05-28 14:20 ` [linux-pm] " Alan Cox
2010-05-28 13:39 ` tytso
2010-05-28 13:39 ` [linux-pm] " tytso
2010-05-28 14:14 ` Igor Stoppa
2010-05-28 14:14 ` [linux-pm] " Igor Stoppa
2010-05-28 14:14 ` Igor Stoppa
2010-05-28 14:21 ` Matthew Garrett
2010-05-28 14:21 ` [linux-pm] " Matthew Garrett
2010-05-28 14:29 ` Brian Swetland
2010-05-28 14:29 ` [linux-pm] " Brian Swetland
2010-05-28 14:41 ` Matthew Garrett
2010-05-28 14:41 ` Matthew Garrett
2010-05-28 15:06 ` [linux-pm] " Alan Cox
2010-05-28 15:13 ` Brian Swetland
2010-05-28 15:13 ` [linux-pm] " Brian Swetland
2010-05-28 15:13 ` Brian Swetland
2010-05-28 16:31 ` Alan Cox
2010-05-28 16:31 ` [linux-pm] " Alan Cox
2010-05-28 16:31 ` Alan Cox
2010-05-28 17:01 ` Alan Stern
2010-05-28 17:01 ` [linux-pm] " Alan Stern
2010-05-28 17:01 ` Alan Stern
2010-05-28 21:53 ` Arve Hjønnevåg
2010-05-28 21:53 ` Arve Hjønnevåg
2010-05-28 21:53 ` Arve Hjønnevåg
2010-05-28 17:27 ` Zygo Blaxell
2010-05-28 17:27 ` [linux-pm] " Zygo Blaxell
2010-05-28 18:16 ` Peter Zijlstra
2010-05-28 18:16 ` [linux-pm] " Peter Zijlstra
2010-05-28 19:51 ` Zygo Blaxell
2010-05-28 19:51 ` Zygo Blaxell
2010-05-28 15:06 ` Alan Cox
2010-05-29 8:43 ` Vitaly Wool
2010-05-29 8:43 ` [linux-pm] " Vitaly Wool
2010-05-28 12:26 ` Igor Stoppa
2010-05-28 13:54 ` [linux-pm] " Alan Cox
2010-05-28 14:28 ` Igor Stoppa
2010-05-28 14:28 ` Igor Stoppa
2010-05-28 13:54 ` Alan Cox
2010-05-28 12:16 ` [linux-pm] " Theodore Tso
2010-05-28 12:28 ` Theodore Tso
2010-05-28 12:28 ` [linux-pm] " Theodore Tso
2010-05-28 12:49 ` Igor Stoppa
2010-05-28 12:49 ` [linux-pm] " Igor Stoppa
2010-05-28 12:31 ` Theodore Tso
2010-05-28 12:31 ` [linux-pm] " Theodore Tso
2010-05-28 13:30 ` Igor Stoppa
2010-05-28 13:30 ` [linux-pm] " Igor Stoppa
2010-05-28 12:16 ` Theodore Tso
2010-05-28 9:37 ` Alan Cox
2010-05-28 9:53 ` [linux-pm] " Alan Cox
2010-05-28 9:53 ` Alan Cox
2010-05-28 4:55 ` Brian Swetland
2010-05-28 4:55 ` [linux-pm] " Brian Swetland
2010-05-28 6:39 ` Florian Mickler
2010-05-28 6:39 ` Florian Mickler
2010-05-27 22:55 ` Alan Cox
2010-05-27 22:36 ` Matthew Garrett
2010-05-28 2:47 ` [linux-pm] " Arve Hjønnevåg
2010-05-28 2:47 ` Arve Hjønnevåg
2010-05-28 9:17 ` Alan Cox
2010-05-28 9:17 ` [linux-pm] " Alan Cox
2010-05-28 9:32 ` Arve Hjønnevåg
2010-05-28 11:16 ` Alan Cox
2010-05-28 11:16 ` [linux-pm] " Alan Cox
2010-05-28 11:20 ` Arve Hjønnevåg
2010-05-28 11:20 ` [linux-pm] " Arve Hjønnevåg
2010-05-28 11:20 ` Arve Hjønnevåg
2010-05-28 13:55 ` Alan Cox
2010-05-28 13:55 ` [linux-pm] " Alan Cox
2010-05-28 14:05 ` Matthew Garrett
2010-05-28 14:05 ` [linux-pm] " Matthew Garrett
2010-05-28 12:21 ` Alan Cox
2010-05-28 12:21 ` [linux-pm] " Alan Cox
2010-05-28 12:30 ` Peter Zijlstra
2010-05-28 12:30 ` [linux-pm] " Peter Zijlstra
2010-05-28 13:02 ` Alan Cox
2010-05-28 13:02 ` [linux-pm] " Alan Cox
2010-05-28 13:20 ` Peter Zijlstra
2010-05-28 14:59 ` Peter Zijlstra
2010-05-28 14:59 ` [linux-pm] " Peter Zijlstra
2010-05-28 15:14 ` Alan Stern
2010-05-28 15:14 ` [linux-pm] " Alan Stern
2010-05-28 15:53 ` Florian Mickler
2010-05-28 15:53 ` Florian Mickler
2010-05-28 21:44 ` Rafael J. Wysocki
2010-05-28 21:44 ` [linux-pm] " Rafael J. Wysocki
2010-05-29 7:53 ` Peter Zijlstra
2010-05-29 7:53 ` [linux-pm] " Peter Zijlstra
2010-05-28 13:20 ` Peter Zijlstra
2010-05-28 12:31 ` [linux-pm] " Matthew Garrett
2010-05-28 13:54 ` Alan Cox
2010-05-28 13:54 ` [linux-pm] " Alan Cox
2010-05-28 14:02 ` Matthew Garrett
2010-05-28 15:24 ` Alan Cox
2010-05-28 15:24 ` [linux-pm] " Alan Cox
2010-05-28 14:02 ` Matthew Garrett
2010-05-28 12:31 ` Matthew Garrett
2010-05-28 14:35 ` [linux-pm] " Alan Stern
2010-05-28 15:18 ` Peter Zijlstra
2010-05-28 15:30 ` Alan Stern
2010-05-28 15:30 ` Alan Stern
2010-05-28 15:18 ` Peter Zijlstra
2010-05-28 14:35 ` Alan Stern
2010-05-29 8:39 ` [linux-pm] " Vitaly Wool
2010-05-29 8:39 ` Vitaly Wool
2010-05-28 9:32 ` Arve Hjønnevåg
2010-05-28 14:07 ` Alan Stern
2010-05-28 14:07 ` [linux-pm] " Alan Stern
2010-05-28 9:21 ` resume latency QoS support, unify suspend/resume into idle states Ingo Molnar
2010-05-28 9:21 ` Ingo Molnar
2010-05-28 9:59 ` Arve Hjønnevåg
2010-05-28 9:59 ` Arve Hjønnevåg
2010-05-28 2:47 ` [PATCH 0/8] Suspend block api (version 8) Arve Hjønnevåg
2010-05-27 22:08 ` Alan Cox
2010-05-27 17:00 ` [linux-pm] " Alan Stern
2010-05-27 17:00 ` Alan Stern
2010-05-27 17:24 ` Thomas Gleixner
2010-05-27 17:31 ` Matthew Garrett
2010-05-27 17:34 ` Peter Zijlstra
2010-05-27 17:40 ` Matthew Garrett
2010-05-27 17:47 ` Peter Zijlstra
2010-05-27 19:22 ` Alan Stern
2010-05-27 19:22 ` [linux-pm] " Alan Stern
2010-05-27 19:22 ` Alan Stern
2010-05-27 22:41 ` Rafael J. Wysocki
2010-05-27 22:41 ` [linux-pm] " Rafael J. Wysocki
2010-05-27 23:15 ` Alan Cox
2010-05-27 23:15 ` [linux-pm] " Alan Cox
2010-05-27 23:42 ` Kevin Hilman
2010-05-27 23:42 ` Kevin Hilman
2010-05-28 0:05 ` [linux-pm] " Rafael J. Wysocki
2010-05-28 0:49 ` Mike Chan
2010-05-28 0:49 ` [linux-pm] " Mike Chan
2010-05-28 7:47 ` Peter Zijlstra
2010-05-28 7:47 ` [linux-pm] " Peter Zijlstra
2010-05-28 13:22 ` Matthew Garrett
2010-05-28 13:22 ` Matthew Garrett
2010-05-28 0:05 ` Rafael J. Wysocki
2010-05-27 17:47 ` Peter Zijlstra
2010-05-27 18:05 ` [linux-pm] " Alan Cox
2010-05-27 18:15 ` Matthew Garrett
2010-05-27 18:15 ` [linux-pm] " Matthew Garrett
2010-05-27 18:44 ` Kevin Hilman
2010-05-27 18:44 ` [linux-pm] " Kevin Hilman
2010-05-27 22:45 ` Rafael J. Wysocki
2010-05-27 22:45 ` Rafael J. Wysocki
2010-05-27 18:05 ` Alan Cox
2010-05-27 18:14 ` Thomas Gleixner
2010-05-27 18:14 ` [linux-pm] " Thomas Gleixner
2010-05-27 17:40 ` Matthew Garrett
2010-05-27 17:44 ` Alan Stern
2010-05-27 17:44 ` [linux-pm] " Alan Stern
2010-05-27 17:44 ` Alan Stern
2010-05-27 17:52 ` Peter Zijlstra
2010-05-27 17:57 ` Matthew Garrett
2010-05-27 17:57 ` [linux-pm] " Matthew Garrett
2010-05-27 18:02 ` Peter Zijlstra
2010-05-27 18:14 ` Matthew Garrett
2010-05-27 18:18 ` Peter Zijlstra
2010-05-27 18:29 ` Matthew Garrett
2010-05-27 18:29 ` [linux-pm] " Matthew Garrett
2010-05-27 18:55 ` Thomas Gleixner
2010-05-27 18:55 ` [linux-pm] " Thomas Gleixner
2010-05-27 18:18 ` Peter Zijlstra
2010-05-27 19:03 ` Alan Cox
2010-05-27 19:03 ` [linux-pm] " Alan Cox
2010-05-27 18:58 ` Thomas Gleixner
2010-05-27 18:58 ` [linux-pm] " Thomas Gleixner
2010-05-27 19:13 ` Matthew Garrett
2010-05-27 19:50 ` Alan Cox
2010-05-27 19:50 ` [linux-pm] " Alan Cox
2010-05-27 20:02 ` Matthew Garrett
2010-05-27 20:02 ` [linux-pm] " Matthew Garrett
2010-05-27 19:13 ` Matthew Garrett
2010-05-27 23:10 ` Rafael J. Wysocki
2010-05-27 23:10 ` [linux-pm] " Rafael J. Wysocki
2010-05-27 23:50 ` Alan Cox
2010-05-28 0:06 ` Dmitry Torokhov
2010-05-28 0:06 ` [linux-pm] " Dmitry Torokhov
2010-05-28 0:39 ` Rafael J. Wysocki
2010-05-28 0:39 ` [linux-pm] " Rafael J. Wysocki
2010-05-28 0:45 ` Arve Hjønnevåg
2010-05-28 7:43 ` Peter Zijlstra
2010-05-28 22:11 ` Rafael J. Wysocki
2010-05-28 22:11 ` [linux-pm] " Rafael J. Wysocki
2010-05-29 9:04 ` Florian Mickler
2010-05-29 10:42 ` Peter Zijlstra
2010-05-29 11:18 ` Florian Mickler
2010-05-29 14:10 ` Alan Stern
2010-05-29 14:10 ` [linux-pm] " Alan Stern
2010-05-29 14:30 ` Brian Swetland
2010-05-29 11:18 ` Florian Mickler
2010-05-29 10:42 ` Peter Zijlstra
2010-05-29 9:04 ` Florian Mickler
2010-05-28 7:43 ` Peter Zijlstra
2010-05-28 11:04 ` Alan Cox
2010-05-28 11:04 ` [linux-pm] " Alan Cox
2010-05-28 11:05 ` Arve Hjønnevåg
2010-05-28 11:05 ` Arve Hjønnevåg
2010-05-28 0:45 ` Arve Hjønnevåg
2010-05-28 7:29 ` [linux-pm] " Peter Zijlstra
2010-05-28 22:18 ` Rafael J. Wysocki
2010-05-28 22:18 ` [linux-pm] " Rafael J. Wysocki
2010-05-29 7:59 ` Peter Zijlstra
2010-05-29 7:59 ` [linux-pm] " Peter Zijlstra
2010-05-28 7:29 ` Peter Zijlstra
2010-05-27 23:50 ` Alan Cox
2010-05-27 18:14 ` Matthew Garrett
2010-05-27 18:02 ` Peter Zijlstra
2010-05-27 18:20 ` Alan Cox
2010-05-27 18:20 ` [linux-pm] " Alan Cox
2010-05-27 19:04 ` Alan Stern
2010-05-27 19:04 ` [linux-pm] " Alan Stern
2010-05-27 19:04 ` Alan Stern
2010-05-27 19:27 ` Alan Cox
2010-05-27 19:27 ` [linux-pm] " Alan Cox
2010-05-27 19:27 ` Alan Cox
2010-05-27 19:32 ` Alan Stern
2010-05-27 19:32 ` [linux-pm] " Alan Stern
2010-05-27 19:32 ` Alan Stern
2010-05-27 23:24 ` Rafael J. Wysocki
2010-05-27 23:24 ` [linux-pm] " Rafael J. Wysocki
2010-05-28 0:59 ` Alan Stern
2010-05-28 0:59 ` [linux-pm] " Alan Stern
2010-05-28 7:19 ` Peter Zijlstra
2010-05-28 7:19 ` [linux-pm] " Peter Zijlstra
2010-05-28 14:49 ` Alan Stern
2010-05-28 14:49 ` Alan Stern
2010-05-28 14:49 ` Alan Stern
2010-05-27 17:52 ` Peter Zijlstra
2010-05-27 17:34 ` Peter Zijlstra
2010-05-27 18:05 ` [linux-pm] " Thomas Gleixner
2010-05-27 18:17 ` Matthew Garrett
2010-05-27 18:17 ` [linux-pm] " Matthew Garrett
2010-05-28 8:44 ` Florian Mickler
2010-05-28 8:44 ` [linux-pm] " Florian Mickler
2010-05-28 9:18 ` Arve Hjønnevåg
2010-05-28 9:18 ` [linux-pm] " Arve Hjønnevåg
2010-05-28 9:18 ` Arve Hjønnevåg
2010-05-28 10:25 ` Florian Mickler
2010-05-28 10:25 ` [linux-pm] " Florian Mickler
2010-05-28 11:35 ` Arve Hjønnevåg
2010-05-28 12:09 ` Florian Mickler
2010-05-28 12:09 ` Florian Mickler
2010-05-28 12:09 ` Florian Mickler
2010-05-28 11:35 ` Arve Hjønnevåg
2010-05-28 22:24 ` Rafael J. Wysocki
2010-05-28 22:24 ` [linux-pm] " Rafael J. Wysocki
2010-05-29 1:11 ` Arve Hjønnevåg
2010-05-29 1:11 ` [linux-pm] " Arve Hjønnevåg
2010-05-29 1:11 ` Arve Hjønnevåg
2010-05-27 18:05 ` Thomas Gleixner
2010-05-27 17:31 ` Matthew Garrett
2010-05-27 17:24 ` Thomas Gleixner
2010-05-27 17:00 ` Alan Stern
2010-05-27 17:21 ` Florian Mickler
2010-05-27 17:21 ` [linux-pm] " Florian Mickler
2010-05-27 17:25 ` Peter Zijlstra
2010-05-27 17:42 ` Florian Mickler
2010-05-27 17:52 ` Peter Zijlstra
2010-05-27 17:54 ` Matthew Garrett
2010-05-27 17:54 ` [linux-pm] " Matthew Garrett
2010-05-27 18:02 ` Peter Zijlstra
2010-05-27 19:19 ` Alan Stern
2010-05-27 19:19 ` Alan Stern
2010-05-28 5:15 ` Peter Zijlstra
2010-05-28 5:15 ` [linux-pm] " Peter Zijlstra
2010-05-28 6:16 ` Arve Hjønnevåg
2010-05-28 6:16 ` [linux-pm] " Arve Hjønnevåg
2010-05-28 6:16 ` Arve Hjønnevåg
2010-05-27 19:19 ` Alan Stern
2010-05-27 18:02 ` Peter Zijlstra
2010-05-27 17:52 ` Peter Zijlstra
2010-05-27 17:42 ` Florian Mickler
2010-05-27 17:25 ` Peter Zijlstra
2010-05-27 15:52 ` Matthew Garrett
2010-05-27 14:06 ` Matthew Garrett
2010-05-27 7:42 ` Vitaly Wool
2010-05-27 7:42 ` [linux-pm] " Vitaly Wool
2010-05-27 8:05 ` Arve Hjønnevåg
2010-05-27 8:05 ` [linux-pm] " Arve Hjønnevåg
2010-05-26 22:30 ` Arve Hjønnevåg
2010-05-26 13:16 ` Alan Cox
2010-05-28 2:09 ` [linux-pm] " Ben Gamari
2010-05-28 7:03 ` Florian Mickler
2010-05-28 7:03 ` [linux-pm] " Florian Mickler
2010-05-28 2:09 ` Ben Gamari
2010-05-26 12:24 ` Florian Mickler
2010-05-26 12:01 ` Vitaly Wool
2010-05-26 11:18 ` Vitaly Wool
2010-05-26 10:02 ` Florian Mickler
2010-05-26 10:06 ` Arve Hjønnevåg
2010-05-26 10:09 ` Peter Zijlstra
2010-05-26 10:09 ` Peter Zijlstra
2010-05-26 10:25 ` Arve Hjønnevåg
2010-05-26 10:25 ` Arve Hjønnevåg
2010-05-26 10:25 ` Arve Hjønnevåg
2010-05-26 10:32 ` Peter Zijlstra
2010-05-26 10:32 ` Peter Zijlstra
2010-05-26 10:40 ` Brian Swetland
2010-05-26 10:40 ` Brian Swetland
2010-05-26 10:40 ` Arve Hjønnevåg
2010-05-26 10:49 ` Peter Zijlstra
2010-05-26 10:49 ` Peter Zijlstra
2010-05-26 10:49 ` Peter Zijlstra
2010-05-26 10:53 ` Arve Hjønnevåg
2010-05-26 10:53 ` Arve Hjønnevåg
2010-05-26 11:12 ` Peter Zijlstra
2010-05-26 11:12 ` Peter Zijlstra
2010-05-26 12:35 ` Alan Cox
2010-05-26 12:35 ` Alan Cox
2010-05-26 12:53 ` Peter Zijlstra
2010-05-26 12:53 ` Peter Zijlstra
2010-05-26 20:18 ` Zygo Blaxell
2010-05-26 20:18 ` Zygo Blaxell
2010-05-26 22:52 ` Arve Hjønnevåg
2010-05-26 22:52 ` Arve Hjønnevåg
2010-05-26 11:23 ` [linux-pm] " Vitaly Wool
2010-05-26 11:23 ` Vitaly Wool
2010-05-26 10:40 ` Arve Hjønnevåg
2010-05-26 10:06 ` Arve Hjønnevåg
2010-05-26 9:45 ` Peter Zijlstra
2010-05-26 8:45 ` Peter Zijlstra
2010-05-26 8:45 ` Peter Zijlstra
2010-05-26 9:40 ` Florian Mickler
2010-05-26 9:54 ` Peter Zijlstra
2010-05-26 11:35 ` Florian Mickler
2010-05-26 11:35 ` Florian Mickler
2010-05-26 9:54 ` Peter Zijlstra
2010-05-26 9:40 ` Florian Mickler
2010-05-24 0:46 ` 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=1274482015-30899-6-git-send-email-arve@android.com \
--to=arve@android.com \
--cc=akpm@linux-foundation.org \
--cc=damm@igel.co.jp \
--cc=fengguang.wu@intel.com \
--cc=jbarnes@virtuousgeek.org \
--cc=len.brown@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@lists.linux-foundation.org \
--cc=maximlevitsky@gmail.com \
--cc=pavel@ucw.cz \
--cc=rjw@sisk.pl \
--cc=tj@kernel.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.