Prev: [PATCH][1/1] fs: wrong type for 'magic' argument in 'simple_fill_super()', fs/libfs.c
Next: [patch] x86: xsave: cleanup return codes in check_for_xstate()
From: Michal Marek on 3 Jun 2010 06:00 On 10.5.2010 18:24, Nicolas Palix wrote: > +@script:python depends on org@ > +p << r.p; > +x << r.x; > +@@ > + > +msg="%s" % (x) > +msg_safe=msg.replace("[","@(").replace("]",")") > +coccilib.org.print_todo(p[0], msg_safe) > + > +@script:python depends on report@ > +p << r.p; > +x << r.x; > +@@ > + > +msg="WARNING: kzalloc should be used for %s, instead of kmalloc/memset" % (x) > +coccilib.report.print_report(p[0], msg_safe) msg_safe is not defined in this scriptlet, I'm only getting Traceback (most recent call last): File "<string>", line 5, in <module> NameError: name 'msg_safe' is not defined Michal -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
From: Nicolas Palix on 3 Jun 2010 06:20
On Thursday 03 June 2010 11:51:43 Michal Marek wrote: > On 10.5.2010 18:24, Nicolas Palix wrote: > > +@script:python depends on org@ > > +p << r.p; > > +x << r.x; > > +@@ > > + > > +msg="%s" % (x) > > +msg_safe=msg.replace("[","@(").replace("]",")") > > +coccilib.org.print_todo(p[0], msg_safe) > > + > > +@script:python depends on report@ > > +p << r.p; > > +x << r.x; > > +@@ > > + > > +msg="WARNING: kzalloc should be used for %s, instead of kmalloc/memset" % (x) > > +coccilib.report.print_report(p[0], msg_safe) > > msg_safe is not defined in this scriptlet, I'm only getting > > Traceback (most recent call last): > File "<string>", line 5, in <module> > NameError: name 'msg_safe' is not defined Oops. Thank you for reporting this. I fixed it for my upcoming submission. In the meantime, you can replace "msg_safe" by "msg" in the rule dedicated to the "report" mode. That is coccilib.report.print_report(p[0], msg_safe) by coccilib.report.print_report(p[0], msg The good point is that you only reach this point if Coccinelle has found something to change in the code. So there is some patches to do... ;) > > Michal > -- Nicolas Palix Tel: (+33) 1 44 27 87 25 Tel: (+33) 6 81 07 91 72 Web: http://www.diku.dk/~npalix/ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |