mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 06:01:23 +00:00
PM QoS: Minor clean-ups
- Misc fixes to improve code readability: * rename struct pm_qos_request_list to struct pm_qos_request, * rename pm_qos_req parameter to req in internal code, consistenly use req in the API parameters, * update the in-kernel API callers to the new parameters names, * rename of fields names (requests, list, node, constraints) Signed-off-by: Jean Pihet <j-pihet@ti.com> Acked-by: markgross <markgross@thegnar.org> Reviewed-by: Kevin Hilman <khilman@ti.com> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
This commit is contained in:
parent
e8db0be124
commit
cc74998618
6 changed files with 59 additions and 59 deletions
|
@ -69,7 +69,7 @@ struct via_camera {
|
||||||
struct mutex lock;
|
struct mutex lock;
|
||||||
enum viacam_opstate opstate;
|
enum viacam_opstate opstate;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
struct pm_qos_request_list qos_request;
|
struct pm_qos_request qos_request;
|
||||||
/*
|
/*
|
||||||
* GPIO info for power/reset management
|
* GPIO info for power/reset management
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -174,7 +174,7 @@ that only one external action is invoked at a time.
|
||||||
#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2100 Network Driver"
|
#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2100 Network Driver"
|
||||||
#define DRV_COPYRIGHT "Copyright(c) 2003-2006 Intel Corporation"
|
#define DRV_COPYRIGHT "Copyright(c) 2003-2006 Intel Corporation"
|
||||||
|
|
||||||
static struct pm_qos_request_list ipw2100_pm_qos_req;
|
static struct pm_qos_request ipw2100_pm_qos_req;
|
||||||
|
|
||||||
/* Debugging stuff */
|
/* Debugging stuff */
|
||||||
#ifdef CONFIG_IPW2100_DEBUG
|
#ifdef CONFIG_IPW2100_DEBUG
|
||||||
|
|
|
@ -964,7 +964,7 @@ struct net_device {
|
||||||
*/
|
*/
|
||||||
char name[IFNAMSIZ];
|
char name[IFNAMSIZ];
|
||||||
|
|
||||||
struct pm_qos_request_list pm_qos_req;
|
struct pm_qos_request pm_qos_req;
|
||||||
|
|
||||||
/* device name hash chain */
|
/* device name hash chain */
|
||||||
struct hlist_node name_hlist;
|
struct hlist_node name_hlist;
|
||||||
|
|
|
@ -20,30 +20,30 @@
|
||||||
#define PM_QOS_NETWORK_LAT_DEFAULT_VALUE (2000 * USEC_PER_SEC)
|
#define PM_QOS_NETWORK_LAT_DEFAULT_VALUE (2000 * USEC_PER_SEC)
|
||||||
#define PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE 0
|
#define PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE 0
|
||||||
|
|
||||||
struct pm_qos_request_list {
|
struct pm_qos_request {
|
||||||
struct plist_node list;
|
struct plist_node node;
|
||||||
int pm_qos_class;
|
int pm_qos_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_PM
|
#ifdef CONFIG_PM
|
||||||
void pm_qos_add_request(struct pm_qos_request_list *l,
|
void pm_qos_add_request(struct pm_qos_request *req, int pm_qos_class,
|
||||||
int pm_qos_class, s32 value);
|
s32 value);
|
||||||
void pm_qos_update_request(struct pm_qos_request_list *pm_qos_req,
|
void pm_qos_update_request(struct pm_qos_request *req,
|
||||||
s32 new_value);
|
s32 new_value);
|
||||||
void pm_qos_remove_request(struct pm_qos_request_list *pm_qos_req);
|
void pm_qos_remove_request(struct pm_qos_request *req);
|
||||||
|
|
||||||
int pm_qos_request(int pm_qos_class);
|
int pm_qos_request(int pm_qos_class);
|
||||||
int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier);
|
int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier);
|
||||||
int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier);
|
int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier);
|
||||||
int pm_qos_request_active(struct pm_qos_request_list *req);
|
int pm_qos_request_active(struct pm_qos_request *req);
|
||||||
#else
|
#else
|
||||||
static inline void pm_qos_add_request(struct pm_qos_request_list *l,
|
static inline void pm_qos_add_request(struct pm_qos_request *req,
|
||||||
int pm_qos_class, s32 value)
|
int pm_qos_class, s32 value)
|
||||||
{ return; }
|
{ return; }
|
||||||
static inline void pm_qos_update_request(struct pm_qos_request_list *pm_qos_req,
|
static inline void pm_qos_update_request(struct pm_qos_request *req,
|
||||||
s32 new_value)
|
s32 new_value)
|
||||||
{ return; }
|
{ return; }
|
||||||
static inline void pm_qos_remove_request(struct pm_qos_request_list *pm_qos_req)
|
static inline void pm_qos_remove_request(struct pm_qos_request *req)
|
||||||
{ return; }
|
{ return; }
|
||||||
|
|
||||||
static inline int pm_qos_request(int pm_qos_class)
|
static inline int pm_qos_request(int pm_qos_class)
|
||||||
|
@ -54,7 +54,7 @@ static inline int pm_qos_add_notifier(int pm_qos_class,
|
||||||
static inline int pm_qos_remove_notifier(int pm_qos_class,
|
static inline int pm_qos_remove_notifier(int pm_qos_class,
|
||||||
struct notifier_block *notifier)
|
struct notifier_block *notifier)
|
||||||
{ return 0; }
|
{ return 0; }
|
||||||
static inline int pm_qos_request_active(struct pm_qos_request_list *req)
|
static inline int pm_qos_request_active(struct pm_qos_request *req)
|
||||||
{ return 0; }
|
{ return 0; }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -373,7 +373,7 @@ struct snd_pcm_substream {
|
||||||
int number;
|
int number;
|
||||||
char name[32]; /* substream name */
|
char name[32]; /* substream name */
|
||||||
int stream; /* stream (direction) */
|
int stream; /* stream (direction) */
|
||||||
struct pm_qos_request_list latency_pm_qos_req; /* pm_qos request */
|
struct pm_qos_request latency_pm_qos_req; /* pm_qos request */
|
||||||
size_t buffer_bytes_max; /* limit ring buffer size */
|
size_t buffer_bytes_max; /* limit ring buffer size */
|
||||||
struct snd_dma_buffer dma_buffer;
|
struct snd_dma_buffer dma_buffer;
|
||||||
unsigned int dma_buf_id;
|
unsigned int dma_buf_id;
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
#include <linux/uaccess.h>
|
#include <linux/uaccess.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* locking rule: all changes to requests or notifiers lists
|
* locking rule: all changes to constraints or notifiers lists
|
||||||
* or pm_qos_object list and pm_qos_objects need to happen with pm_qos_lock
|
* or pm_qos_object list and pm_qos_objects need to happen with pm_qos_lock
|
||||||
* held, taken with _irqsave. One lock to rule them all
|
* held, taken with _irqsave. One lock to rule them all
|
||||||
*/
|
*/
|
||||||
|
@ -60,7 +60,7 @@ enum pm_qos_type {
|
||||||
* types linux supports for 32 bit quantites
|
* types linux supports for 32 bit quantites
|
||||||
*/
|
*/
|
||||||
struct pm_qos_object {
|
struct pm_qos_object {
|
||||||
struct plist_head requests;
|
struct plist_head constraints;
|
||||||
struct blocking_notifier_head *notifiers;
|
struct blocking_notifier_head *notifiers;
|
||||||
struct miscdevice pm_qos_power_miscdev;
|
struct miscdevice pm_qos_power_miscdev;
|
||||||
char *name;
|
char *name;
|
||||||
|
@ -74,7 +74,7 @@ static DEFINE_SPINLOCK(pm_qos_lock);
|
||||||
static struct pm_qos_object null_pm_qos;
|
static struct pm_qos_object null_pm_qos;
|
||||||
static BLOCKING_NOTIFIER_HEAD(cpu_dma_lat_notifier);
|
static BLOCKING_NOTIFIER_HEAD(cpu_dma_lat_notifier);
|
||||||
static struct pm_qos_object cpu_dma_pm_qos = {
|
static struct pm_qos_object cpu_dma_pm_qos = {
|
||||||
.requests = PLIST_HEAD_INIT(cpu_dma_pm_qos.requests),
|
.constraints = PLIST_HEAD_INIT(cpu_dma_pm_qos.constraints),
|
||||||
.notifiers = &cpu_dma_lat_notifier,
|
.notifiers = &cpu_dma_lat_notifier,
|
||||||
.name = "cpu_dma_latency",
|
.name = "cpu_dma_latency",
|
||||||
.target_value = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE,
|
.target_value = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE,
|
||||||
|
@ -84,7 +84,7 @@ static struct pm_qos_object cpu_dma_pm_qos = {
|
||||||
|
|
||||||
static BLOCKING_NOTIFIER_HEAD(network_lat_notifier);
|
static BLOCKING_NOTIFIER_HEAD(network_lat_notifier);
|
||||||
static struct pm_qos_object network_lat_pm_qos = {
|
static struct pm_qos_object network_lat_pm_qos = {
|
||||||
.requests = PLIST_HEAD_INIT(network_lat_pm_qos.requests),
|
.constraints = PLIST_HEAD_INIT(network_lat_pm_qos.constraints),
|
||||||
.notifiers = &network_lat_notifier,
|
.notifiers = &network_lat_notifier,
|
||||||
.name = "network_latency",
|
.name = "network_latency",
|
||||||
.target_value = PM_QOS_NETWORK_LAT_DEFAULT_VALUE,
|
.target_value = PM_QOS_NETWORK_LAT_DEFAULT_VALUE,
|
||||||
|
@ -95,7 +95,7 @@ static struct pm_qos_object network_lat_pm_qos = {
|
||||||
|
|
||||||
static BLOCKING_NOTIFIER_HEAD(network_throughput_notifier);
|
static BLOCKING_NOTIFIER_HEAD(network_throughput_notifier);
|
||||||
static struct pm_qos_object network_throughput_pm_qos = {
|
static struct pm_qos_object network_throughput_pm_qos = {
|
||||||
.requests = PLIST_HEAD_INIT(network_throughput_pm_qos.requests),
|
.constraints = PLIST_HEAD_INIT(network_throughput_pm_qos.constraints),
|
||||||
.notifiers = &network_throughput_notifier,
|
.notifiers = &network_throughput_notifier,
|
||||||
.name = "network_throughput",
|
.name = "network_throughput",
|
||||||
.target_value = PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE,
|
.target_value = PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE,
|
||||||
|
@ -129,15 +129,15 @@ static const struct file_operations pm_qos_power_fops = {
|
||||||
/* unlocked internal variant */
|
/* unlocked internal variant */
|
||||||
static inline int pm_qos_get_value(struct pm_qos_object *o)
|
static inline int pm_qos_get_value(struct pm_qos_object *o)
|
||||||
{
|
{
|
||||||
if (plist_head_empty(&o->requests))
|
if (plist_head_empty(&o->constraints))
|
||||||
return o->default_value;
|
return o->default_value;
|
||||||
|
|
||||||
switch (o->type) {
|
switch (o->type) {
|
||||||
case PM_QOS_MIN:
|
case PM_QOS_MIN:
|
||||||
return plist_first(&o->requests)->prio;
|
return plist_first(&o->constraints)->prio;
|
||||||
|
|
||||||
case PM_QOS_MAX:
|
case PM_QOS_MAX:
|
||||||
return plist_last(&o->requests)->prio;
|
return plist_last(&o->constraints)->prio;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
/* runtime check for not using enum */
|
/* runtime check for not using enum */
|
||||||
|
@ -170,13 +170,13 @@ static void update_target(struct pm_qos_object *o, struct plist_node *node,
|
||||||
* with new value and add, then see if the extremal
|
* with new value and add, then see if the extremal
|
||||||
* changed
|
* changed
|
||||||
*/
|
*/
|
||||||
plist_del(node, &o->requests);
|
plist_del(node, &o->constraints);
|
||||||
plist_node_init(node, value);
|
plist_node_init(node, value);
|
||||||
plist_add(node, &o->requests);
|
plist_add(node, &o->constraints);
|
||||||
} else if (del) {
|
} else if (del) {
|
||||||
plist_del(node, &o->requests);
|
plist_del(node, &o->constraints);
|
||||||
} else {
|
} else {
|
||||||
plist_add(node, &o->requests);
|
plist_add(node, &o->constraints);
|
||||||
}
|
}
|
||||||
curr_value = pm_qos_get_value(o);
|
curr_value = pm_qos_get_value(o);
|
||||||
pm_qos_set_value(o, curr_value);
|
pm_qos_set_value(o, curr_value);
|
||||||
|
@ -222,7 +222,7 @@ int pm_qos_request(int pm_qos_class)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(pm_qos_request);
|
EXPORT_SYMBOL_GPL(pm_qos_request);
|
||||||
|
|
||||||
int pm_qos_request_active(struct pm_qos_request_list *req)
|
int pm_qos_request_active(struct pm_qos_request *req)
|
||||||
{
|
{
|
||||||
return req->pm_qos_class != 0;
|
return req->pm_qos_class != 0;
|
||||||
}
|
}
|
||||||
|
@ -230,24 +230,24 @@ EXPORT_SYMBOL_GPL(pm_qos_request_active);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* pm_qos_add_request - inserts new qos request into the list
|
* pm_qos_add_request - inserts new qos request into the list
|
||||||
* @dep: pointer to a preallocated handle
|
* @req: pointer to a preallocated handle
|
||||||
* @pm_qos_class: identifies which list of qos request to use
|
* @pm_qos_class: identifies which list of qos request to use
|
||||||
* @value: defines the qos request
|
* @value: defines the qos request
|
||||||
*
|
*
|
||||||
* This function inserts a new entry in the pm_qos_class list of requested qos
|
* This function inserts a new entry in the pm_qos_class list of requested qos
|
||||||
* performance characteristics. It recomputes the aggregate QoS expectations
|
* performance characteristics. It recomputes the aggregate QoS expectations
|
||||||
* for the pm_qos_class of parameters and initializes the pm_qos_request_list
|
* for the pm_qos_class of parameters and initializes the pm_qos_request
|
||||||
* handle. Caller needs to save this handle for later use in updates and
|
* handle. Caller needs to save this handle for later use in updates and
|
||||||
* removal.
|
* removal.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void pm_qos_add_request(struct pm_qos_request_list *dep,
|
void pm_qos_add_request(struct pm_qos_request *req,
|
||||||
int pm_qos_class, s32 value)
|
int pm_qos_class, s32 value)
|
||||||
{
|
{
|
||||||
struct pm_qos_object *o = pm_qos_array[pm_qos_class];
|
struct pm_qos_object *o = pm_qos_array[pm_qos_class];
|
||||||
int new_value;
|
int new_value;
|
||||||
|
|
||||||
if (pm_qos_request_active(dep)) {
|
if (pm_qos_request_active(req)) {
|
||||||
WARN(1, KERN_ERR "pm_qos_add_request() called for already added request\n");
|
WARN(1, KERN_ERR "pm_qos_add_request() called for already added request\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -255,15 +255,15 @@ void pm_qos_add_request(struct pm_qos_request_list *dep,
|
||||||
new_value = o->default_value;
|
new_value = o->default_value;
|
||||||
else
|
else
|
||||||
new_value = value;
|
new_value = value;
|
||||||
plist_node_init(&dep->list, new_value);
|
plist_node_init(&req->node, new_value);
|
||||||
dep->pm_qos_class = pm_qos_class;
|
req->pm_qos_class = pm_qos_class;
|
||||||
update_target(o, &dep->list, 0, PM_QOS_DEFAULT_VALUE);
|
update_target(o, &req->node, 0, PM_QOS_DEFAULT_VALUE);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(pm_qos_add_request);
|
EXPORT_SYMBOL_GPL(pm_qos_add_request);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* pm_qos_update_request - modifies an existing qos request
|
* pm_qos_update_request - modifies an existing qos request
|
||||||
* @pm_qos_req : handle to list element holding a pm_qos request to use
|
* @req : handle to list element holding a pm_qos request to use
|
||||||
* @value: defines the qos request
|
* @value: defines the qos request
|
||||||
*
|
*
|
||||||
* Updates an existing qos request for the pm_qos_class of parameters along
|
* Updates an existing qos request for the pm_qos_class of parameters along
|
||||||
|
@ -271,56 +271,56 @@ EXPORT_SYMBOL_GPL(pm_qos_add_request);
|
||||||
*
|
*
|
||||||
* Attempts are made to make this code callable on hot code paths.
|
* Attempts are made to make this code callable on hot code paths.
|
||||||
*/
|
*/
|
||||||
void pm_qos_update_request(struct pm_qos_request_list *pm_qos_req,
|
void pm_qos_update_request(struct pm_qos_request *req,
|
||||||
s32 new_value)
|
s32 new_value)
|
||||||
{
|
{
|
||||||
s32 temp;
|
s32 temp;
|
||||||
struct pm_qos_object *o;
|
struct pm_qos_object *o;
|
||||||
|
|
||||||
if (!pm_qos_req) /*guard against callers passing in null */
|
if (!req) /*guard against callers passing in null */
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!pm_qos_request_active(pm_qos_req)) {
|
if (!pm_qos_request_active(req)) {
|
||||||
WARN(1, KERN_ERR "pm_qos_update_request() called for unknown object\n");
|
WARN(1, KERN_ERR "pm_qos_update_request() called for unknown object\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
o = pm_qos_array[pm_qos_req->pm_qos_class];
|
o = pm_qos_array[req->pm_qos_class];
|
||||||
|
|
||||||
if (new_value == PM_QOS_DEFAULT_VALUE)
|
if (new_value == PM_QOS_DEFAULT_VALUE)
|
||||||
temp = o->default_value;
|
temp = o->default_value;
|
||||||
else
|
else
|
||||||
temp = new_value;
|
temp = new_value;
|
||||||
|
|
||||||
if (temp != pm_qos_req->list.prio)
|
if (temp != req->node.prio)
|
||||||
update_target(o, &pm_qos_req->list, 0, temp);
|
update_target(o, &req->node, 0, temp);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(pm_qos_update_request);
|
EXPORT_SYMBOL_GPL(pm_qos_update_request);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* pm_qos_remove_request - modifies an existing qos request
|
* pm_qos_remove_request - modifies an existing qos request
|
||||||
* @pm_qos_req: handle to request list element
|
* @req: handle to request list element
|
||||||
*
|
*
|
||||||
* Will remove pm qos request from the list of requests and
|
* Will remove pm qos request from the list of constraints and
|
||||||
* recompute the current target value for the pm_qos_class. Call this
|
* recompute the current target value for the pm_qos_class. Call this
|
||||||
* on slow code paths.
|
* on slow code paths.
|
||||||
*/
|
*/
|
||||||
void pm_qos_remove_request(struct pm_qos_request_list *pm_qos_req)
|
void pm_qos_remove_request(struct pm_qos_request *req)
|
||||||
{
|
{
|
||||||
struct pm_qos_object *o;
|
struct pm_qos_object *o;
|
||||||
|
|
||||||
if (pm_qos_req == NULL)
|
if (req == NULL)
|
||||||
return;
|
return;
|
||||||
/* silent return to keep pcm code cleaner */
|
/* silent return to keep pcm code cleaner */
|
||||||
|
|
||||||
if (!pm_qos_request_active(pm_qos_req)) {
|
if (!pm_qos_request_active(req)) {
|
||||||
WARN(1, KERN_ERR "pm_qos_remove_request() called for unknown object\n");
|
WARN(1, KERN_ERR "pm_qos_remove_request() called for unknown object\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
o = pm_qos_array[pm_qos_req->pm_qos_class];
|
o = pm_qos_array[req->pm_qos_class];
|
||||||
update_target(o, &pm_qos_req->list, 1, PM_QOS_DEFAULT_VALUE);
|
update_target(o, &req->node, 1, PM_QOS_DEFAULT_VALUE);
|
||||||
memset(pm_qos_req, 0, sizeof(*pm_qos_req));
|
memset(req, 0, sizeof(*req));
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(pm_qos_remove_request);
|
EXPORT_SYMBOL_GPL(pm_qos_remove_request);
|
||||||
|
|
||||||
|
@ -368,7 +368,7 @@ static int pm_qos_power_open(struct inode *inode, struct file *filp)
|
||||||
|
|
||||||
pm_qos_class = find_pm_qos_object_by_minor(iminor(inode));
|
pm_qos_class = find_pm_qos_object_by_minor(iminor(inode));
|
||||||
if (pm_qos_class >= 0) {
|
if (pm_qos_class >= 0) {
|
||||||
struct pm_qos_request_list *req = kzalloc(sizeof(*req), GFP_KERNEL);
|
struct pm_qos_request *req = kzalloc(sizeof(*req), GFP_KERNEL);
|
||||||
if (!req)
|
if (!req)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
@ -383,7 +383,7 @@ static int pm_qos_power_open(struct inode *inode, struct file *filp)
|
||||||
|
|
||||||
static int pm_qos_power_release(struct inode *inode, struct file *filp)
|
static int pm_qos_power_release(struct inode *inode, struct file *filp)
|
||||||
{
|
{
|
||||||
struct pm_qos_request_list *req;
|
struct pm_qos_request *req;
|
||||||
|
|
||||||
req = filp->private_data;
|
req = filp->private_data;
|
||||||
pm_qos_remove_request(req);
|
pm_qos_remove_request(req);
|
||||||
|
@ -399,14 +399,14 @@ static ssize_t pm_qos_power_read(struct file *filp, char __user *buf,
|
||||||
s32 value;
|
s32 value;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
struct pm_qos_object *o;
|
struct pm_qos_object *o;
|
||||||
struct pm_qos_request_list *pm_qos_req = filp->private_data;
|
struct pm_qos_request *req = filp->private_data;
|
||||||
|
|
||||||
if (!pm_qos_req)
|
if (!req)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
if (!pm_qos_request_active(pm_qos_req))
|
if (!pm_qos_request_active(req))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
o = pm_qos_array[pm_qos_req->pm_qos_class];
|
o = pm_qos_array[req->pm_qos_class];
|
||||||
spin_lock_irqsave(&pm_qos_lock, flags);
|
spin_lock_irqsave(&pm_qos_lock, flags);
|
||||||
value = pm_qos_get_value(o);
|
value = pm_qos_get_value(o);
|
||||||
spin_unlock_irqrestore(&pm_qos_lock, flags);
|
spin_unlock_irqrestore(&pm_qos_lock, flags);
|
||||||
|
@ -418,7 +418,7 @@ static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf,
|
||||||
size_t count, loff_t *f_pos)
|
size_t count, loff_t *f_pos)
|
||||||
{
|
{
|
||||||
s32 value;
|
s32 value;
|
||||||
struct pm_qos_request_list *pm_qos_req;
|
struct pm_qos_request *req;
|
||||||
|
|
||||||
if (count == sizeof(s32)) {
|
if (count == sizeof(s32)) {
|
||||||
if (copy_from_user(&value, buf, sizeof(s32)))
|
if (copy_from_user(&value, buf, sizeof(s32)))
|
||||||
|
@ -449,8 +449,8 @@ static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf,
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
pm_qos_req = filp->private_data;
|
req = filp->private_data;
|
||||||
pm_qos_update_request(pm_qos_req, value);
|
pm_qos_update_request(req, value);
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue