Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / scripts / coccinelle / free / ifnulldev_put.cocci
blob2bd2e8fae48549dfffd0954f188ca9acb8c52ffc
1 // SPDX-License-Identifier: GPL-2.0-only
2 /// Since commit b37a46683739 ("netdevice: add the case if dev is NULL"),
3 /// NULL check before dev_{put, hold} functions is not needed.
4 ///
5 /// Based on ifnullfree.cocci by Fabian Frederick.
6 ///
7 // Copyright: (C) 2022 Ziyang Xuan.
8 // Comments: -
9 // Options: --no-includes --include-headers
10 // Version min: 5.15
12 virtual patch
13 virtual org
14 virtual report
15 virtual context
17 @r2 depends on patch@
18 expression E;
20 - if (E != NULL)
22   __dev_put(E);
24   dev_put(E);
26   dev_put_track(E, ...);
28   __dev_hold(E);
30   dev_hold(E);
32   dev_hold_track(E, ...);
35 @r depends on context || report || org @
36 expression E;
37 position p;
40 * if (E != NULL)
41 *       \(__dev_put@p\|dev_put@p\|dev_put_track@p\|__dev_hold@p\|dev_hold@p\|
42 *         dev_hold_track@p\)(E, ...);
44 @script:python depends on org@
45 p << r.p;
48 cocci.print_main("NULL check before dev_{put, hold} functions is not needed", p)
50 @script:python depends on report@
51 p << r.p;
54 msg = "WARNING: NULL check before dev_{put, hold} functions is not needed."
55 coccilib.report.print_report(p[0], msg)