rxrpc: Show some more information through /proc files
[linux/fpc-iii.git] / scripts / coccinelle / api / alloc / pool_zalloc-simple.cocci
blob9b7eb321a02563d58820d4264c5a95de5bf743ab
1 ///
2 /// Use *_pool_zalloc rather than *_pool_alloc followed by memset with 0
3 ///
4 // Copyright: (C) 2015 Intel Corp.  GPLv2.
5 // Options: --no-includes --include-headers
6 //
7 // Keywords: dma_pool_zalloc, pci_pool_zalloc
8 //
10 virtual context
11 virtual patch
12 virtual org
13 virtual report
15 //----------------------------------------------------------
16 //  For context mode
17 //----------------------------------------------------------
19 @depends on context@
20 expression x;
21 statement S;
24 * x = \(dma_pool_alloc\|pci_pool_alloc\)(...);
25   if ((x==NULL) || ...) S
26 * memset(x,0, ...);
28 //----------------------------------------------------------
29 //  For patch mode
30 //----------------------------------------------------------
32 @depends on patch@
33 expression x;
34 expression a,b,c;
35 statement S;
38 - x = dma_pool_alloc(a,b,c);
39 + x = dma_pool_zalloc(a,b,c);
40   if ((x==NULL) || ...) S
41 - memset(x,0,...);
43 @depends on patch@
44 expression x;
45 expression a,b,c;
46 statement S;
49 - x = pci_pool_alloc(a,b,c);
50 + x = pci_pool_zalloc(a,b,c);
51   if ((x==NULL) || ...) S
52 - memset(x,0,...);
54 //----------------------------------------------------------
55 //  For org and report mode
56 //----------------------------------------------------------
58 @r depends on org || report@
59 expression x;
60 expression a,b,c;
61 statement S;
62 position p;
65  x = @p\(dma_pool_alloc\|pci_pool_alloc\)(a,b,c);
66  if ((x==NULL) || ...) S
67  memset(x,0, ...);
69 @script:python depends on org@
70 p << r.p;
71 x << r.x;
74 msg="%s" % (x)
75 msg_safe=msg.replace("[","@(").replace("]",")")
76 coccilib.org.print_todo(p[0], msg_safe)
78 @script:python depends on report@
79 p << r.p;
80 x << r.x;
83 msg="WARNING: *_pool_zalloc should be used for %s, instead of *_pool_alloc/memset" % (x)
84 coccilib.report.print_report(p[0], msg)