Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > 589b38626859682dda0b4289ae4806af > files > 77

coccinelle-examples-1.0.7-2.mga7.i586.rpm

// can constraint to specific function by using multiple rules

@ rule1 @
struct file_operations x;
identifier ioctl_fn;
@@

x.ioctl = ioctl_fn;


@@
identifier rule1.ioctl_fn;
@@

 ioctl_fn(...) 
{

- foo(1);
+ foo(2);
}