Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c994b129 authored by Matthew Wilcox's avatar Matthew Wilcox
Browse files

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: default avatarRong Chen <rong.a.chen@intel.com>
Signed-off-by: default avatarMatthew Wilcox <willy@infradead.org>
parent f0a7d188
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -150,10 +150,10 @@ static void ida_check_conv(struct ida *ida)
	IDA_BUG_ON(ida, !ida_is_empty(ida));
}

static DEFINE_IDA(ida);

static int ida_checks(void)
{
	DEFINE_IDA(ida);

	IDA_BUG_ON(&ida, !ida_is_empty(&ida));
	ida_check_alloc(&ida);
	ida_check_destroy(&ida);