Re: [RFC 4/4] scripts: add stackdelta script

From: Rasmus Villemoes
Date: Mon Jun 22 2015 - 03:39:58 EST


On Sun, Jun 21 2015, Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> wrote:

> +
> +my $old = read_stack_usage_file($ARGV[0]);
> +my $new = read_stack_usage_file($ARGV[1]);
> +my @common = grep {exists $new->{$_}} keys %$old;
> +print join(",", keys %old) . "\n";

Bah, that print is leftover from debugging. Please pretend it's not
there.

Rasmus
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at http://www.tux.org/lkml/