Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 310408
b: refs/heads/master
c: 25426b7
h: refs/heads/master
v: v3
  • Loading branch information
Hiroaki SHIMODA authored and David S. Miller committed May 31, 2012
1 parent 6e05d53 commit d7e7d7d
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 0cfd32b736ae0c36b42697584811042726c07cba
refs/heads/master: 25426b794efdc70dde7fd3134dc56fac3e7d562d
6 changes: 4 additions & 2 deletions trunk/lib/dynamic_queue_limits.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@
#include <linux/dynamic_queue_limits.h>

#define POSDIFF(A, B) ((int)((A) - (B)) > 0 ? (A) - (B) : 0)
#define AFTER_EQ(A, B) ((int)((A) - (B)) >= 0)

/* Records completed count and recalculates the queue limit */
void dql_completed(struct dql *dql, unsigned int count)
{
unsigned int inprogress, prev_inprogress, limit;
unsigned int ovlimit, all_prev_completed, completed;
unsigned int ovlimit, completed;
bool all_prev_completed;

/* Can't complete more than what's in queue */
BUG_ON(count > dql->num_queued - dql->num_completed);
Expand All @@ -26,7 +28,7 @@ void dql_completed(struct dql *dql, unsigned int count)
ovlimit = POSDIFF(dql->num_queued - dql->num_completed, limit);
inprogress = dql->num_queued - completed;
prev_inprogress = dql->prev_num_queued - dql->num_completed;
all_prev_completed = POSDIFF(completed, dql->prev_num_queued);
all_prev_completed = AFTER_EQ(completed, dql->prev_num_queued);

if ((ovlimit && !inprogress) ||
(dql->prev_ovlimit && all_prev_completed)) {
Expand Down

0 comments on commit d7e7d7d

Please sign in to comment.