Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 310407
b: refs/heads/master
c: 0cfd32b
h: refs/heads/master
i:
  310405: eca20bb
  310403: 7e7394e
  310399: 7e050e6
v: v3
  • Loading branch information
Hiroaki SHIMODA authored and David S. Miller committed May 31, 2012
1 parent 6323eba commit 6e05d53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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: 401453a31ea8192eb94f9337f5608de907681bfb
refs/heads/master: 0cfd32b736ae0c36b42697584811042726c07cba
2 changes: 1 addition & 1 deletion trunk/lib/dynamic_queue_limits.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <linux/jiffies.h>
#include <linux/dynamic_queue_limits.h>

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

/* Records completed count and recalculates the queue limit */
void dql_completed(struct dql *dql, unsigned int count)
Expand Down

0 comments on commit 6e05d53

Please sign in to comment.