Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Coccinelle: array_size: report even if include is missing

Rule r does not depend on rule i (which is the include of
linux/kernel.h) so the output should not depend on i in
org and report mode.

Signed-off-by: Jérémy Lefaure <jeremy.lefaure@lse.epita.fr>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

authored by

Jérémy Lefaure and committed by
Masahiro Yamada
cb00a4f3 5e2d9da5

+2 -2
+2 -2
scripts/coccinelle/misc/array_size.cocci
··· 72 72 (sizeof(E)@p /sizeof(T)) 73 73 ) 74 74 75 - @script:python depends on i&&org@ 75 + @script:python depends on org@ 76 76 p << r.p; 77 77 @@ 78 78 79 79 coccilib.org.print_todo(p[0], "WARNING should use ARRAY_SIZE") 80 80 81 - @script:python depends on i&&report@ 81 + @script:python depends on report@ 82 82 p << r.p; 83 83 @@ 84 84