aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wilcox <willy@infradead.org>2018-10-15 16:23:08 -0400
committerMatthew Wilcox <willy@infradead.org>2018-10-15 16:31:29 -0400
commitc994b12945a65cd892ca2cf7ddcf0b7d8b25cdec (patch)
tree910c826c9a20d31f6b229e2fedf25b3e9fe33cb2
parentf0a7d1883d9f78ae7bf15fc258bf9a2b20f35b76 (diff)
test_ida: Fix lockdep warning
The IDA was declared on the stack instead of statically, so lockdep triggered a warning that it was improperly initialised. Reported-by: 0day bot Tested-by: Rong Chen <rong.a.chen@intel.com> Signed-off-by: Matthew Wilcox <willy@infradead.org>
-rw-r--r--lib/test_ida.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/test_ida.c b/lib/test_ida.c
index 2d1637d8136b..b06880625961 100644
--- a/lib/test_ida.c
+++ b/lib/test_ida.c
@@ -150,10 +150,10 @@ static void ida_check_conv(struct ida *ida)
150 IDA_BUG_ON(ida, !ida_is_empty(ida)); 150 IDA_BUG_ON(ida, !ida_is_empty(ida));
151} 151}
152 152
153static DEFINE_IDA(ida);
154
153static int ida_checks(void) 155static int ida_checks(void)
154{ 156{
155 DEFINE_IDA(ida);
156
157 IDA_BUG_ON(&ida, !ida_is_empty(&ida)); 157 IDA_BUG_ON(&ida, !ida_is_empty(&ida));
158 ida_check_alloc(&ida); 158 ida_check_alloc(&ida);
159 ida_check_destroy(&ida); 159 ida_check_destroy(&ida);