aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dynamic_queue_limits.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dynamic_queue_limits.c')
-rw-r--r--lib/dynamic_queue_limits.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dynamic_queue_limits.c b/lib/dynamic_queue_limits.c
index 0777c5a45fa0..f346715e2255 100644
--- a/lib/dynamic_queue_limits.c
+++ b/lib/dynamic_queue_limits.c
@@ -3,12 +3,12 @@
3 * 3 *
4 * Copyright (c) 2011, Tom Herbert <therbert@google.com> 4 * Copyright (c) 2011, Tom Herbert <therbert@google.com>
5 */ 5 */
6#include <linux/module.h>
7#include <linux/types.h> 6#include <linux/types.h>
8#include <linux/ctype.h>
9#include <linux/kernel.h> 7#include <linux/kernel.h>
10#include <linux/jiffies.h> 8#include <linux/jiffies.h>
11#include <linux/dynamic_queue_limits.h> 9#include <linux/dynamic_queue_limits.h>
10#include <linux/compiler.h>
11#include <linux/export.h>
12 12
13#define POSDIFF(A, B) ((int)((A) - (B)) > 0 ? (A) - (B) : 0) 13#define POSDIFF(A, B) ((int)((A) - (B)) > 0 ? (A) - (B) : 0)
14#define AFTER_EQ(A, B) ((int)((A) - (B)) >= 0) 14#define AFTER_EQ(A, B) ((int)((A) - (B)) >= 0)