From: Matthew Locke <matt@nomadgs.com>
To: David Singleton <daviado@gmail.com>
Cc: kernel list <linux-kernel@vger.kernel.org>,
linux-pm@lists.osdl.org, Greg KH <greg@kroah.com>,
pavel@ucw.cz
Subject: Re: [linux-pm] OpPoint summary
Date: Sun, 17 Sep 2006 15:43:09 -0700 [thread overview]
Message-ID: <b24d628c48c1b1157fc2b178c5e9a019@nomadgs.com> (raw)
In-Reply-To: <b324b5ad0609162207o269c826cuae051ecfa61c4362@mail.gmail.com>
Dave,
I am confused as to why you continue to duplicate work already done in
PowerOP. We are still waiting to hear why you need to have a different
operating point interface. As Eugeny and I have pointed out before
(refer to the thread in my PowerOP vs OPpoint email), your interface
doesn't make sense on a mulit cpu, SMP or otherwise, system. I
recommend you redo your patches to use PowerOP which already supports
this properly.
On Sep 16, 2006, at 10:07 PM, David Singleton wrote:
> Pavel and Greg,
>
> I've incorporated Pavels suggestions and only put suspend states
> in the /sys/power/state file. The control file for frequency and
> voltage operating
> point transitions is now in /sys/power/operating_points/current_point.
>
> The /sys/power/operating_points dirctory still contains the operating
> points themselves, with a frequency, voltage and latency file
> for each operating point.
>
> The oppointd power manager has been changed to use the
> new control file for operating points. It has been tested on
> a centrino laptop, the 4 way Xeon server and the arm-pxa27x.
>
> I finally got SMP tested on a 4 way Xeon server. The patch
> that supports SMP Xeon's is the oppoint-x86-p4.patch in the series.
>
> The only files in the core framework patch now are:
>
> kernel/power/main.c
> include/linux/pm.h
> kernel/power/power.h
>
> The full patch set is at
>
> http://source.mvista.com/~dsingleton/2.6.18-rc7
>
> The power manager source and patch is at:
>
> http://source.mvista.com/~dsingleton/oppointd-1.2.3
>
> Attached is the oppoint-core.patch.
>
> David
>
> Signed-Off-by: David Singleton <dsingleton@mvista.com>
>
> include/linux/pm.h | 30 +++-
> kernel/power/main.c | 361
> +++++++++++++++++++++++++++++++++++++++++++++------
> kernel/power/power.h | 2
> 3 files changed, 350 insertions(+), 43 deletions(-)
>
> Index: linux-2.6.17/kernel/power/main.c
> ===================================================================
> --- linux-2.6.17.orig/kernel/power/main.c
> +++ linux-2.6.17/kernel/power/main.c
> @@ -16,6 +16,7 @@
> #include <linux/init.h>
> #include <linux/pm.h>
> #include <linux/console.h>
> +#include <linux/module.h>
>
> #include "power.h"
>
> @@ -49,7 +50,7 @@ void pm_set_ops(struct pm_ops * ops)
> * the platform can enter the requested state.
> */
>
> -static int suspend_prepare(suspend_state_t state)
> +static int suspend_prepare(struct oppoint * state)
> {
> int error = 0;
> unsigned int free_pages;
> @@ -82,7 +83,7 @@ static int suspend_prepare(suspend_state
> }
>
> if (pm_ops->prepare) {
> - if ((error = pm_ops->prepare(state)))
> + if ((error = pm_ops->prepare(state->type)))
> goto Thaw;
> }
>
> @@ -94,7 +95,7 @@ static int suspend_prepare(suspend_state
> return 0;
> Finish:
> if (pm_ops->finish)
> - pm_ops->finish(state);
> + pm_ops->finish(state->type);
> Thaw:
> thaw_processes();
> Enable_cpu:
> @@ -104,7 +105,7 @@ static int suspend_prepare(suspend_state
> }
>
>
> -int suspend_enter(suspend_state_t state)
> +int suspend_enter(struct oppoint * state)
> {
> int error = 0;
> unsigned long flags;
> @@ -115,7 +116,7 @@ int suspend_enter(suspend_state_t state)
> printk(KERN_ERR "Some devices failed to power down\n");
> goto Done;
> }
> - error = pm_ops->enter(state);
> + error = pm_ops->enter(state->type);
> device_power_up();
> Done:
> local_irq_restore(flags);
> @@ -131,36 +132,82 @@ int suspend_enter(suspend_state_t state)
> * console that we've allocated. This is not called for
> suspend-to-disk.
> */
>
> -static void suspend_finish(suspend_state_t state)
> +static void suspend_finish(struct oppoint * state)
> {
> device_resume();
> resume_console();
> thaw_processes();
> enable_nonboot_cpus();
> if (pm_ops && pm_ops->finish)
> - pm_ops->finish(state);
> + pm_ops->finish(state->type);
> pm_restore_console();
> }
>
> +struct list_head pm_list;
> +static struct oppoint standby = {
> + .name = "standby",
> + .type = PM_SUSPEND_STANDBY,
> +};
>
> +static struct oppoint mem = {
> + .name = "mem",
> + .type = PM_SUSPEND_MEM,
> + .frequency = 0,
> + .voltage = 0,
> + .latency = 150,
> +};
>
> -
> -static const char * const pm_states[PM_SUSPEND_MAX] = {
> - [PM_SUSPEND_STANDBY] = "standby",
> - [PM_SUSPEND_MEM] = "mem",
> #ifdef CONFIG_SOFTWARE_SUSPEND
> - [PM_SUSPEND_DISK] = "disk",
> +struct oppoint disk = {
> + .name = "disk",
> + .type = PM_SUSPEND_DISK,
> +};
> #endif
> +
> +struct oppoint pm_states = {
> + .name = "default",
> + .type = PM_FREQ_CHANGE,
> };
> +struct oppoint *current_state;
> +
> +/*
> + *
> + */
> +static int pm_change_state(struct oppoint *state)
> +{
> + int error = 0;
> +
> + printk("OpPoint: changing from %s to %s\n",
> current_state->name,
> + state->name);
> + /*
> + * compare to current operating point.
> + * if different change to new operating point.
> + */
> + if (current_state == state)
> + goto out;
> +
> + if ((error = state->prepare_transition(current_state, state)))
> + goto out;
> +
> + if ((error = state->transition(current_state, state)))
> + state = current_state;
> +
> + if ((error = state->finish_transition(current_state, state))
> == 0)
> + current_state = state;
> +
> +out:
> + printk("OpPoint: State change returned %d\n", error);
> + return error;
> +}
>
> -static inline int valid_state(suspend_state_t state)
> +static inline int valid_state(struct oppoint * state)
> {
> /* Suspend-to-disk does not really need low-level support.
> * It can work with reboot if needed. */
> - if (state == PM_SUSPEND_DISK)
> + if (state->type == PM_SUSPEND_DISK)
> return 1;
>
> - if (pm_ops && pm_ops->valid && !pm_ops->valid(state))
> + if (pm_ops && pm_ops->valid && !pm_ops->valid(state->type))
> return 0;
> return 1;
> }
> @@ -168,7 +215,7 @@ static inline int valid_state(suspend_st
>
> /**
> * enter_state - Do common work of entering low-power state.
> - * @state: pm_state structure for state we're entering.
> + * @state: oppoint structure for state we're entering.
> *
> * Make sure we're the only ones trying to enter a sleep state.
> Fail
> * if someone has beat us to it, since we don't want anything
> weird to
> @@ -177,7 +224,7 @@ static inline int valid_state(suspend_st
> * we've woken up).
> */
>
> -static int enter_state(suspend_state_t state)
> +static int enter_state(struct oppoint *state)
> {
> int error;
>
> @@ -186,16 +233,21 @@ static int enter_state(suspend_state_t s
> if (down_trylock(&pm_sem))
> return -EBUSY;
>
> - if (state == PM_SUSPEND_DISK) {
> + if (state->type == PM_SUSPEND_DISK) {
> error = pm_suspend_disk();
> goto Unlock;
> }
>
> - pr_debug("PM: Preparing system for %s sleep\n",
> pm_states[state]);
> + if (state->type == PM_FREQ_CHANGE || state->type ==
> PM_VOLT_CHANGE) {
> + error = pm_change_state(state);
> + goto Unlock;
> + }
> +
> + pr_debug("PM: Preparing system for %s sleep\n", state->name);
> if ((error = suspend_prepare(state)))
> goto Unlock;
>
> - pr_debug("PM: Entering %s sleep\n", pm_states[state]);
> + pr_debug("PM: Entering %s sleep\n", state->name);
> error = suspend_enter(state);
>
> pr_debug("PM: Finishing wakeup.\n");
> @@ -211,7 +263,15 @@ static int enter_state(suspend_state_t s
> */
> int software_suspend(void)
> {
> - return enter_state(PM_SUSPEND_DISK);
> + struct oppoint *this, *next;
> + struct list_head *head = &mem.list;
> + int error = 0;
> +
> + list_for_each_entry_safe(this, next, head, list) {
> + if (this->type == PM_SUSPEND_DISK)
> + error= enter_state(this);
> + }
> + return error;
> }
>
>
> @@ -223,9 +283,9 @@ int software_suspend(void)
> * structure, and enter (above).
> */
>
> -int pm_suspend(suspend_state_t state)
> +int pm_suspend(struct oppoint * state)
> {
> - if (state > PM_SUSPEND_ON && state <= PM_SUSPEND_MAX)
> + if (state->type > PM_SUSPEND_ON && state->type <=
> PM_SUSPEND_MAX)
> return enter_state(state);
> return -EINVAL;
> }
> @@ -248,36 +308,35 @@ decl_subsys(power,NULL,NULL);
>
> static ssize_t state_show(struct subsystem * subsys, char * buf)
> {
> - int i;
> - char * s = buf;
> + struct oppoint *this, *next;
> + struct list_head *head = &pm_list;
> + char *s = buf;
> +
> + list_for_each_entry_safe(this, next, head, list)
> + s += sprintf(s,"%s ", this->name);
>
> - for (i = 0; i < PM_SUSPEND_MAX; i++) {
> - if (pm_states[i] && valid_state(i))
> - s += sprintf(s,"%s ", pm_states[i]);
> - }
> s += sprintf(s,"\n");
> +
> return (s - buf);
> }
>
> static ssize_t state_store(struct subsystem * subsys, const char *
> buf, size_t n)
> {
> - suspend_state_t state = PM_SUSPEND_STANDBY;
> - const char * const *s;
> + struct oppoint *this, *next;
> + struct list_head *head = &mem.list;
> char *p;
> - int error;
> + int error = -EINVAL;
> int len;
>
> p = memchr(buf, '\n', n);
> len = p ? p - buf : n;
> -
> - for (s = &pm_states[state]; state < PM_SUSPEND_MAX; s++,
> state++) {
> - if (*s && !strncmp(buf, *s, len))
> + list_for_each_entry_safe(this, next, head, list) {
> + if ((strlen(this->name) == len) &&
> + (!strncmp(this->name, buf, len))) {
> + error = enter_state(this);
> break;
> + }
> }
> - if (state < PM_SUSPEND_MAX && *s)
> - error = enter_state(state);
> - else
> - error = -EINVAL;
> return error ? error : n;
> }
>
> @@ -292,12 +351,234 @@ static struct attribute_group attr_group
> .attrs = g,
> };
>
> +static struct kobject oppoint_kobj = {
> + .kset = &power_subsys.kset,
> +};
> +
> +struct oppoint_attribute {
> + struct attribute attr;
> + ssize_t (*show)(struct kobject * kobj, char * buf);
> + ssize_t (*store)(struct kobject * kobj, const char * buf,
> size_t count);
> +};
> +
> +#define to_oppoint(obj) container_of(obj,struct oppoint,kobj)
> +#define to_oppoint_attr(_attr) container_of(_attr,struct
> oppoint_attribute,attr)
> +/*
> + * the frequency, voltage and latency files are readonly
> + */
> +
> +static ssize_t oppoint_voltage_show(struct kobject * kobj, char * buf)
> +{
> + ssize_t len;
> + struct oppoint *opt = to_oppoint(kobj);
> +
> + len = sprintf(buf, "%8d\n", opt->voltage);
> +
> + return len;
> +}
> +
> +static ssize_t oppoint_voltage_store(struct kobject * kobj, const
> char * buf,
> + size_t n)
> +{
> + return -EINVAL;
> +
> +}
> +
> +static ssize_t oppoint_frequency_show(struct kobject * kobj, char *
> buf)
> +{
> + ssize_t len;
> + struct oppoint *opt = to_oppoint(kobj);
> +
> + len = sprintf(buf, "%8d\n", opt->frequency);
> +
> + return len;
> +}
> +
> +static ssize_t oppoint_frequency_store(struct kobject * kobj,
> + const char * buf, size_t n)
> +{
> + return -EINVAL;
> +
> +}
> +
> +static ssize_t oppoint_point_show(struct kobject * kobj, char * buf)
> +{
> + ssize_t len;
> +
> + len = sprintf(buf, "%s\n", current_state->name);
> +
> + return len;
> +}
> +
> +static ssize_t oppoint_point_store(struct kobject * kobj, const char
> * buf,
> + size_t n)
> +{
> + struct oppoint *this, *next;
> + struct list_head *head = &pm_states.list;
> + char *p;
> + int error = -EINVAL;
> + int len;
> +
> + p = memchr(buf, '\n', n);
> + len = p ? p - buf : n;
> + list_for_each_entry_safe(this, next, head, list) {
> + if ((strlen(this->name) == len) &&
> + (!strncmp(this->name, buf, len))) {
> + error = enter_state(this);
> + break;
> + }
> + }
> + return error ? error : n;
> +}
> +
> +static ssize_t oppoint_latency_show(struct kobject * kobj, char * buf)
> +{
> + ssize_t len;
> + struct oppoint *opt = to_oppoint(kobj);
> +
> + len = sprintf(buf, "%8d\n", opt->latency);
> +
> + return len;
> +}
> +
> +static ssize_t oppoint_latency_store(struct kobject * kobj,
> + const char * buf, size_t n)
> +{
> + return -EINVAL;
> +
> +}
> +
> +static struct oppoint_attribute point_attr = {
> + .attr = {
> + .name = "current_point",
> + .mode = 0600,
> + },
> + .show = oppoint_point_show,
> + .store = oppoint_point_store,
> +};
> +
> +static struct oppoint_attribute frequency_attr = {
> + .attr = {
> + .name = "frequency",
> + .mode = 0400,
> + },
> + .show = oppoint_frequency_show,
> + .store = oppoint_frequency_store,
> +};
> +
> +static struct oppoint_attribute voltage_attr = {
> + .attr = {
> + .name = "voltage",
> + .mode = 0400,
> + },
> + .show = oppoint_voltage_show,
> + .store = oppoint_voltage_store,
> +};
> +
> +static struct oppoint_attribute latency_attr = {
> + .attr = {
> + .name = "latency",
> + .mode = 0400,
> + },
> + .show = oppoint_latency_show,
> + .store = oppoint_latency_store,
> +};
> +
> +static ssize_t
> +oppoint_attr_show(struct kobject * kobj, struct attribute * attr,
> char * buf)
> +{
> + struct oppoint_attribute * opt_attr = to_oppoint_attr(attr);
> + ssize_t ret = 0;
> +
> + if (opt_attr->show)
> + ret = opt_attr->show(kobj,buf);
> + return ret;
> +}
> +
> +static ssize_t
> +oppoint_attr_store(struct kobject * kobj, struct attribute * attr,
> + const char * buf, size_t count)
> +{
> + return -EINVAL;
> +}
> +
> +static void oppoint_kobj_release(struct kobject *kobj)
> +{
> + return;
> +}
> +
> +static struct sysfs_ops oppoint_sysfs_ops = {
> + .show = oppoint_attr_show,
> + .store = oppoint_attr_store,
> +};
> +
> +static struct attribute * oppoint_default_attrs[] = {
> + &frequency_attr.attr,
> + &voltage_attr.attr,
> + &latency_attr.attr,
> + NULL,
> +};
> +
> +static struct kobj_type ktype_operating_point = {
> + .release = oppoint_kobj_release,
> + .sysfs_ops = &oppoint_sysfs_ops,
> + .default_attrs = oppoint_default_attrs,
> +};
> +
> +int unregister_operating_point(struct oppoint *opt)
> +{
> + down(&pm_sem);
> + list_del_init(&opt->list);
> + sysfs_remove_file(&opt->kobj, &frequency_attr.attr);
> + sysfs_remove_file(&opt->kobj, &voltage_attr.attr);
> + sysfs_remove_file(&opt->kobj, &latency_attr.attr);
> + up(&pm_sem);
> +
> + return 0;
> +}
> +EXPORT_SYMBOL(unregister_operating_point);
> +
> +int register_operating_point(struct oppoint *opt)
> +{
> + down(&pm_sem);
> + kobject_set_name(&opt->kobj, opt->name);
> + opt->kobj.kset = &power_subsys.kset;
> + opt->kobj.parent = &oppoint_kobj;
> + opt->kobj.ktype = &ktype_operating_point;
> + kobject_register(&opt->kobj);
> +
> + sysfs_create_file(&opt->kobj, &frequency_attr.attr);
> + sysfs_create_file(&opt->kobj, &voltage_attr.attr);
> + sysfs_create_file(&opt->kobj, &latency_attr.attr);
> +
> + list_add_tail(&opt->list, &pm_states.list);
> + up(&pm_sem);
> + return 0;
> +}
> +EXPORT_SYMBOL(register_operating_point);
>
> static int __init pm_init(void)
> {
> +
> int error = subsystem_register(&power_subsys);
> - if (!error)
> + if (!error) {
> error =
> sysfs_create_group(&power_subsys.kset.kobj,&attr_group);
> + kobject_set_name(&oppoint_kobj, "operating_points");
> + kobject_register(&oppoint_kobj);
> + sysfs_create_file(&oppoint_kobj, &point_attr.attr);
> + }
> +
> +
> + INIT_LIST_HEAD(&pm_states.list);
> + INIT_LIST_HEAD(&pm_list);
> +
> +#ifdef CONFIG_SOFTWARE_SUSPEND
> + list_add(&disk.list, &pm_list);
> +#endif
> + list_add(&standby.list, &pm_list);
> + list_add(&mem.list, &pm_list);
> + current_state = &pm_states;
> +
> return error;
> }
>
> Index: linux-2.6.17/include/linux/pm.h
> ===================================================================
> --- linux-2.6.17.orig/include/linux/pm.h
> +++ linux-2.6.17/include/linux/pm.h
> @@ -24,6 +24,7 @@
> #ifdef __KERNEL__
>
> #include <linux/list.h>
> +#include <linux/kobject.h>
> #include <asm/atomic.h>
>
> /*
> @@ -108,7 +109,32 @@ typedef int __bitwise suspend_state_t;
> #define PM_SUSPEND_STANDBY ((__force suspend_state_t) 1)
> #define PM_SUSPEND_MEM ((__force suspend_state_t) 3)
> #define PM_SUSPEND_DISK ((__force suspend_state_t) 4)
> -#define PM_SUSPEND_MAX ((__force suspend_state_t) 5)
> +#define PM_FREQ_CHANGE ((__force suspend_state_t) 5)
> +#define PM_VOLT_CHANGE ((__force suspend_state_t) 6)
> +#define PM_SUSPEND_MAX ((__force suspend_state_t) 7)
> +
> +struct oppoint {
> + struct list_head list;
> + suspend_state_t type;
> + char *name;
> + unsigned int flags;
> + unsigned int frequency; /* in KHz */
> + unsigned int voltage; /* mV */
> + unsigned int latency; /* transition latency in us */
> + int (*prepare_transition)(struct oppoint *cur, struct
> oppoint *new);
> + int (*transition)(struct oppoint *cur, struct oppoint
> *new);
> + int (*finish_transition)(struct oppoint *cur, struct
> oppoint *new);
> +
> + void *md_data; /* arch dependent data */
> + struct kobject kobj;
> +};
> +
> +
> +extern struct oppoint pm_states;
> +extern struct oppoint *current_state;
> +extern int register_operating_point(struct oppoint *opt);
> +extern int unregister_operating_point(struct oppoint *opt);
> +struct notifier_block;
>
> typedef int __bitwise suspend_disk_method_t;
>
> @@ -128,7 +154,7 @@ struct pm_ops {
>
> extern void pm_set_ops(struct pm_ops *);
> extern struct pm_ops *pm_ops;
> -extern int pm_suspend(suspend_state_t state);
> +extern int pm_suspend(struct oppoint *state);
>
>
> /*
> Index: linux-2.6.17/kernel/power/power.h
> ===================================================================
> --- linux-2.6.17.orig/kernel/power/power.h
> +++ linux-2.6.17/kernel/power/power.h
> @@ -113,4 +113,4 @@ extern int swsusp_resume(void);
> extern int swsusp_read(void);
> extern int swsusp_write(void);
> extern void swsusp_close(void);
> -extern int suspend_enter(suspend_state_t state);
> +extern int suspend_enter(struct oppoint * state);
> _______________________________________________
> linux-pm mailing list
> linux-pm@lists.osdl.org
> https://lists.osdl.org/mailman/listinfo/linux-pm
>
next prev parent reply other threads:[~2006-09-17 22:43 UTC|newest]
Thread overview: 135+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-11 7:57 community PM requirements/issues and PowerOP [Was: Re: So, what's the status on the recent patches here?] Eugeny S. Mints
2006-09-11 8:20 ` Pavel Machek
2006-09-11 9:47 ` Eugeny S. Mints
2006-09-11 19:36 ` Pavel Machek
2006-09-11 19:53 ` Matthew Locke
2006-09-11 20:06 ` Pavel Machek
2006-09-11 20:09 ` Pavel Machek
2006-09-11 20:33 ` Matthew Locke
2006-09-11 21:06 ` Pavel Machek
2006-09-11 21:50 ` Matthew Locke
2006-09-11 22:50 ` Pavel Machek
2006-09-12 3:31 ` Greg KH
2006-09-12 8:26 ` Matthew Locke
2006-09-13 4:22 ` David Brownell
2006-09-11 20:25 ` Matthew Locke
2006-09-11 21:02 ` Pavel Machek
2006-09-12 3:26 ` Greg KH
2006-09-11 22:00 ` Mark Gross
2006-09-11 22:08 ` Matthew Locke
2006-09-11 20:24 ` Eugeny S. Mints
2006-09-11 20:34 ` Pavel Machek
2006-09-13 4:54 ` David Brownell
2006-09-13 11:39 ` Preece Scott-PREECE
2006-09-14 9:12 ` Pavel Machek
2006-09-14 9:16 ` Vitaly Wool
2006-09-14 9:20 ` Matthew Locke
2006-09-14 10:05 ` Eugeny S. Mints
2006-09-14 10:17 ` Pavel Machek
2006-09-14 10:47 ` Eugeny S. Mints
2006-09-14 12:15 ` Vitaly Wool
2006-09-14 13:03 ` Pavel Machek
2006-09-14 13:04 ` Pavel Machek
2006-09-14 13:15 ` Vitaly Wool
2006-09-14 13:20 ` Pavel Machek
2006-09-14 13:26 ` Vitaly Wool
2006-09-14 14:59 ` David Brownell
2006-09-17 10:53 ` Amit Kucheria
2006-09-17 13:18 ` Pavel Machek
2006-09-17 13:28 ` Amit Kucheria
2006-09-17 13:40 ` Pavel Machek
2006-09-17 14:14 ` Amit Kucheria
2006-09-17 18:25 ` community PM requirements/issues and PowerOP[Was: " Preece Scott-PREECE
2006-09-18 9:02 ` community PM requirements/issues and PowerOP [Was: " Pavel Machek
2006-09-14 14:56 ` David Brownell
2006-09-17 12:34 ` Pavel Machek
2006-09-17 13:06 ` Vitaly Wool
2006-09-18 10:46 ` Amit Kucheria
2006-09-18 10:53 ` Pavel Machek
2006-09-18 12:01 ` Igor Stoppa
2006-09-18 12:11 ` nokia 770 [was Re: community PM requirements/issues and PowerOP [Was: Re: So, what's the status on the recent patches here?]] Pavel Machek
2006-09-18 12:42 ` Amit Kucheria
2006-09-19 18:25 ` Pavel Machek
2006-12-12 20:00 ` nokia 770 [was Re: community PM requirements/issues and PowerOP] David Brownell
2006-12-13 12:12 ` Eugeny S. Mints
2006-12-13 21:03 ` Pavel Machek
2006-12-13 21:32 ` David Brownell
2006-12-13 21:44 ` Matthew Locke
2006-12-13 21:53 ` Dave Jones
2006-12-13 22:50 ` Matthew Locke
2006-12-13 22:58 ` Dave Jones
2006-12-14 10:14 ` Dmitry Krivoschekov
2006-12-14 12:12 ` Dave Jones
2006-12-14 13:01 ` Vitaly Wool
2006-12-14 13:17 ` Dave Jones
2006-12-14 14:56 ` Pavel Machek
2006-12-14 15:22 ` Dmitry Krivoschekov
2006-12-13 22:55 ` nokia 770 [was Re: community PM requirements...] David Brownell
2006-12-13 21:56 ` nokia 770 [was Re: community PM requirements/issues and PowerOP] Eugeny S. Mints
2006-12-13 21:58 ` Pavel Machek
2006-12-13 22:27 ` nokia 770 [was Re: community PM requirements...] David Brownell
2006-12-13 21:27 ` nokia 770 [was Re: community PM requirements/issues and PowerOP] Matthew Locke
2006-09-14 19:25 ` community PM requirements/issues and PowerOP [Was: Re: So, what's the status on the recent patches here?] Jon Loeliger
2006-09-17 12:46 ` Pavel Machek
2006-09-17 17:32 ` Preece Scott-PREECE
2006-09-19 18:20 ` Pavel Machek
2006-09-19 19:11 ` Preece Scott-PREECE
2006-09-23 23:39 ` Pavel Machek
2006-09-14 12:12 ` Vitaly Wool
2006-09-14 12:35 ` Eugeny S. Mints
2006-09-14 9:32 ` PowerOP on lkml or linux-pm? Matthew Locke
2006-09-14 9:45 ` Pavel Machek
2006-09-14 9:58 ` Matthew Locke
2006-09-14 9:47 ` community PM requirements/issues and PowerOP [Was: Re: So, what's the status on the recent patches here?] Matthew Locke
2006-09-11 19:30 ` Matthew Locke
2006-09-11 19:55 ` Pavel Machek
2006-09-11 20:53 ` Eugeny S. Mints
2006-09-11 21:00 ` Pavel Machek
2006-09-11 21:36 ` Preece Scott-PREECE
2006-09-11 21:39 ` Pavel Machek
2006-09-11 22:41 ` Eugeny S. Mints
2006-09-11 23:05 ` cpufreq user<->kernel interface removal [was Re: community PM requirements/issues and PowerOP] Pavel Machek
2006-09-11 23:50 ` Mark Gross
2006-09-12 3:35 ` Greg KH
2006-09-12 8:41 ` Matthew Locke
2006-09-12 17:03 ` Jon Loeliger
2006-09-14 16:26 ` Mark Gross
2006-09-17 12:37 ` Pavel Machek
2006-09-17 13:10 ` Vitaly Wool
2006-09-17 13:20 ` Pavel Machek
2006-09-11 22:05 ` community PM requirements/issues and PowerOP [Was: Re: So, what's the status on the recent patches here?] Eugeny S. Mints
2006-09-11 22:56 ` cpufreq terminally broken [was Re: community PM requirements/issues and PowerOP] Pavel Machek
2006-09-12 0:17 ` Mark Gross
2006-09-12 3:37 ` Greg KH
2006-09-13 23:50 ` [linux-pm] " David Singleton
2006-09-14 5:30 ` Vitaly Wool
2006-09-14 5:55 ` OpPoint summary Greg KH
2006-09-14 7:35 ` Vitaly Wool
2006-09-14 16:55 ` David Singleton
2006-09-14 17:03 ` David Singleton
2006-09-14 17:07 ` David Singleton
2006-09-14 17:25 ` Auke Kok
2006-09-14 18:15 ` [linux-pm] " Vitaly Wool
2006-09-14 18:17 ` David Singleton
2006-09-17 17:48 ` Pavel Machek
2006-09-18 14:33 ` [linux-pm] " Richard A. Griffiths
2006-09-18 16:13 ` Matthew Locke
2006-09-14 17:11 ` David Singleton
2006-09-17 5:07 ` David Singleton
2006-09-17 12:56 ` Pavel Machek
2006-09-17 12:58 ` Pavel Machek
2006-09-17 22:43 ` Matthew Locke [this message]
2007-02-27 20:55 ` cpufreq terminally broken [was Re: community PM requirements/issues and PowerOP] David Brownell
2007-02-27 22:41 ` Matthew Locke
2006-09-12 8:33 ` Pavel Machek
2006-09-12 9:10 ` Vitaly Wool
2006-09-12 9:16 ` Pavel Machek
2006-09-12 9:23 ` [linux-pm] " Vitaly Wool
2006-09-14 15:04 ` Mark Gross
2006-09-14 14:58 ` Mark Gross
2006-10-05 3:30 ` community PM requirements/issues and PowerOP [Was: Re: So, what's the status on the recent patches here?] Dominik Brodowski
2006-09-11 21:53 ` Mark Gross
2006-09-11 22:43 ` Pavel Machek
2006-09-12 0:00 ` Mark Gross
-- strict thread matches above, loose matches on Subject: below --
2006-09-18 13:36 [linux-pm] OpPoint summary Scott E. Preece
2006-09-18 13:46 ` Pavel Machek
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=b24d628c48c1b1157fc2b178c5e9a019@nomadgs.com \
--to=matt@nomadgs.com \
--cc=daviado@gmail.com \
--cc=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@lists.osdl.org \
--cc=pavel@ucw.cz \
/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