extra: small fix for when the database is disabled but we have inline info
[smatch.git] / validation / sm_locking4.c
blob041a79a578e478f4e9dcd1f4afdc974465bd1f67
1 void _spin_lock(int name);
2 void _spin_unlock(int name);
4 void frob(void){}
5 int a;
6 int b;
7 void func (void)
9 int mylock = 1;
10 int mylock2 = 2;
12 if (1)
13 _spin_unlock(mylock);
14 frob();
15 if (a)
16 return;
17 if (!0)
18 _spin_lock(mylock);
19 if (0)
20 _spin_unlock(mylock);
21 if (b)
22 return;
23 if (!1)
24 _spin_lock(mylock);
27 * check-name: Smatch locking #4
28 * check-command: smatch --project=kernel sm_locking4.c
30 * check-output-start
31 sm_locking4.c:23 func() warn: inconsistent returns spin_lock:mylock: locked (22, 23) unlocked (16)
32 * check-output-end