implied: use a time based timeout instead of counting ->nr_children
[smatch.git] / validation / sm_locking3.c
blob02f6ebb8302cd40fabe0fc51060ec0d8c33e0019
1 _spin_trylock(int name);
2 _spin_lock(int name);
3 _spin_unlock(int name);
5 int func (void)
7 int mylock = 1;
9 if (!({frob(); frob(); _spin_trylock(mylock);}))
10 return;
12 frob();
13 _spin_unlock(mylock);
15 if (((_spin_trylock(mylock)?1:0)?1:0))
16 return;
17 frob_somemore();
18 _spin_unlock(mylock);
20 return;
23 * check-name: Smatch locking #3
24 * check-command: smatch --project=kernel sm_locking3.c
26 * check-output-start
27 sm_locking3.c:18 func() error: double unlock 'spin_lock:mylock'
28 sm_locking3.c:20 func() warn: inconsistent returns 'spin_lock:mylock'.
29 Locked on: line 16
30 Unlocked on: line 10
31 line 20
32 * check-output-end