Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 336732
b: refs/heads/master
c: 42f67f2
h: refs/heads/master
v: v3
  • Loading branch information
Daniel Lezcano authored and Rafael J. Wysocki committed Nov 14, 2012
1 parent 0c127d0 commit eeced1a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8f3e9953e1e4ae5c11e2e880e7d85c03c0180613
refs/heads/master: 42f67f2acab2b7179c0d1ab234869e391448dfa6
13 changes: 8 additions & 5 deletions trunk/drivers/cpuidle/driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

static struct cpuidle_driver *cpuidle_curr_driver;
DEFINE_SPINLOCK(cpuidle_driver_lock);
int cpuidle_driver_refcount;

static void set_power_states(struct cpuidle_driver *drv)
{
Expand Down Expand Up @@ -61,6 +60,8 @@ int cpuidle_register_driver(struct cpuidle_driver *drv)
if (!drv->power_specified)
set_power_states(drv);

drv->refcnt = 0;

cpuidle_curr_driver = drv;

spin_unlock(&cpuidle_driver_lock);
Expand Down Expand Up @@ -92,7 +93,7 @@ void cpuidle_unregister_driver(struct cpuidle_driver *drv)

spin_lock(&cpuidle_driver_lock);

if (!WARN_ON(cpuidle_driver_refcount > 0))
if (!WARN_ON(drv->refcnt > 0))
cpuidle_curr_driver = NULL;

spin_unlock(&cpuidle_driver_lock);
Expand All @@ -106,18 +107,20 @@ struct cpuidle_driver *cpuidle_driver_ref(void)
spin_lock(&cpuidle_driver_lock);

drv = cpuidle_curr_driver;
cpuidle_driver_refcount++;
drv->refcnt++;

spin_unlock(&cpuidle_driver_lock);
return drv;
}

void cpuidle_driver_unref(void)
{
struct cpuidle_driver *drv = cpuidle_curr_driver;

spin_lock(&cpuidle_driver_lock);

if (!WARN_ON(cpuidle_driver_refcount <= 0))
cpuidle_driver_refcount--;
if (drv && !WARN_ON(drv->refcnt <= 0))
drv->refcnt--;

spin_unlock(&cpuidle_driver_lock);
}
1 change: 1 addition & 0 deletions trunk/include/linux/cpuidle.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ static inline int cpuidle_get_last_residency(struct cpuidle_device *dev)
struct cpuidle_driver {
const char *name;
struct module *owner;
int refcnt;

unsigned int power_specified:1;
/* set to 1 to use the core cpuidle time keeping (for all states). */
Expand Down

0 comments on commit eeced1a

Please sign in to comment.