Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 320248
b: refs/heads/master
c: e78d483
h: refs/heads/master
v: v3
  • Loading branch information
Jan Kara authored and Fengguang Wu committed Jun 8, 2012
1 parent 5343646 commit d68426b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 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: f3109a51f8dc88e8a94f620240b7474b91bed37a
refs/heads/master: e78d4833c03e28205b3d983f0c4e586ee34785fd
10 changes: 8 additions & 2 deletions trunk/lib/flex_proportions.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,26 @@ void fprop_global_destroy(struct fprop_global *p)
*/
bool fprop_new_period(struct fprop_global *p, int periods)
{
u64 events = percpu_counter_sum(&p->events);
u64 events;
unsigned long flags;

local_irq_save(flags);
events = percpu_counter_sum(&p->events);
/*
* Don't do anything if there are no events.
*/
if (events <= 1)
if (events <= 1) {
local_irq_restore(flags);
return false;
}
write_seqcount_begin(&p->sequence);
if (periods < 64)
events -= events >> periods;
/* Use addition to avoid losing events happening between sum and set */
percpu_counter_add(&p->events, -events);
p->period += periods;
write_seqcount_end(&p->sequence);
local_irq_restore(flags);

return true;
}
Expand Down

0 comments on commit d68426b

Please sign in to comment.