Re: [PATCH 4/6] tracing, page-allocator: Add a postprocessing scriptfor page-allocator-related ftrace events

From: Li, Ming Chun
Date: Fri Aug 07 2009 - 15:11:20 EST


On Fri, 7 Aug 2009, Li, Ming Chun wrote:

> On Fri, 7 Aug 2009, Mel Gorman wrote:
>
> > +sub generate_traceevent_regex {
> > + my $event = shift;
> > + my $default = shift;
> > + my @fields = @_;
> > + my $regex;
>
> You are using shift to retrieve parameters below, @fields is not used
> anywhere.
>
> > +
> > + # Read the event format or use the default
> > + if (!open (FORMAT, "/sys/kernel/debug/tracing/events/$event/format")) {
> > + $regex = $default;
> > + } else {
> > + my $line;
> > + while (!eof(FORMAT)) {
> > + $line = <FORMAT>;
> > + if ($line =~ /^print fmt:\s"(.*)",.*/) {
> > + $regex = $1;
> > + $regex =~ s/%p/\([0-9a-f]*\)/g;
> > + $regex =~ s/%d/\([-0-9]*\)/g;
> > + $regex =~ s/%lu/\([0-9]*\)/g;
> > + }
> > + }
> > + }
> > +
> > + # Verify fields are in the right order
> > + my $tuple;
> > + foreach $tuple (split /\s/, $regex) {
> > + my ($key, $value) = split(/=/, $tuple);
> > + my $expected = shift;
> > + if ($key ne $expected) {
> > + print("WARNING: Format not as expected '$key' != '$expected'");
> > + $regex =~ s/$key=\((.*)\)/$key=$1/;
> > + }
> > + }
> > + if (defined $_) {
> > + die("Fewer fields than expected in format");
> > + }
> > +
>
> How about:
> if (defined shift) {
> die("Fewer fields than expected in format");
> }
> ?
>
> I don't know, just ask if it is clear.

Ah, I think it should be:
if (@_) {
die("Fewer fields than expected in format");
}

? Sorry for the noise :)

>
> > + return $regex;
> > +}
>
>

Vincent Li
Biomedical Research Center
University of British Columbia
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/