cocci.inria.fr archive mirror
 help / color / mirror / Atom feed
* [Cocci] Coccinelle: zalloc-simple: Checking data processing for a bigger SmPL disjunction
@ 2019-11-04 13:34 Markus Elfring
  2019-11-04 13:37 ` Julia Lawall
  0 siblings, 1 reply; 3+ messages in thread
From: Markus Elfring @ 2019-11-04 13:34 UTC (permalink / raw)
  To: Coccinelle

Hello,

I have tried the following small script variant out for
the semantic patch language.

@adjustment@
type T, T2;
expression x,E1,E2,E3,E4;
statement S;
@@
(
- x = kmalloc(E1,E2);
+ x = kzalloc(E1,E2);
|
 x = (T)dma_alloc_coherent(E2,E1,E3,E4);
)
  if ((x==NULL) || ...) S
- memset((T2)x,0,E1);


It can generate an usable diff hunk.

elfring@Sonne:~/Projekte/Linux/next-patched> spatch scripts/coccinelle/api/alloc/zalloc-simple-x.cocci drivers/scsi/pmcraid.c


But I would like to add the last case distinction also to a similar
disjunction in the known (and discussed) SmPL script version.
I observe that the expected diff hunk is not provided then.
How would you like to fix this software situation?

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-11-04 13:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-04 13:34 [Cocci] Coccinelle: zalloc-simple: Checking data processing for a bigger SmPL disjunction Markus Elfring
2019-11-04 13:37 ` Julia Lawall
2019-11-04 13:45   ` Markus Elfring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).