lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 5 Mar 2010 12:09:20 -0300
From:	Arnaldo Carvalho de Melo <acme@...hat.com>
To:	Eric B Munson <ebmunson@...ibm.com>
Cc:	a.p.zijlstra@...llo.nl, paulus@...ba.org, mingo@...e.hu,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH 4/5] Change perf_session post processing functions to
	take histogram tree

Em Wed, Mar 03, 2010 at 03:38:26PM +0000, Eric B Munson escreveu:
> Now that report can store historgrams for multiple events we need
> to be able to do the post processing work for each histogram.
> This patch changes the post processing functions so that they can
> be called individually for each event's histogram.

here you forgot to change builtin-report.c

cc1: warnings being treated as errors
builtin-report.c: In function ‘__cmd_report’:
builtin-report.c:228: warning: passing argument 1 of ‘perf_session__collapse_resort’ from incompatible pointer type
builtin-report.c:229: warning: passing argument 1 of ‘perf_session__output_resort’ from incompatible pointer type
builtin-report.c:231: warning: passing argument 1 of ‘perf_session__fprintf_hists’ from incompatible pointer type
builtin-report.c:231: error: too few arguments to function ‘perf_session__fprintf_hists’
make: *** [builtin-report.o] Error 1
make: *** Waiting for unfinished jobs....
rm .perf.dev.null
make: Leaving directory `/home/acme/git/linux-2.6-tip/tools/perf'
[acme@...lia linux-2.6-tip]$

It breaks bisection, I'm fixing this now before testing and pushing to Ingo.

- Arnaldo
 
> Signed-off-by: Eric B Munson <ebmunson@...ibm.com>
> ---
>  tools/perf/builtin-annotate.c |    4 ++--
>  tools/perf/builtin-diff.c     |    9 +++++----
>  tools/perf/util/hist.c        |   39 ++++++++++++++++++++-------------------
>  tools/perf/util/hist.h        |    9 +++++----
>  4 files changed, 32 insertions(+), 29 deletions(-)
> 
> diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c
> index 4b734c7..6ad7148 100644
> --- a/tools/perf/builtin-annotate.c
> +++ b/tools/perf/builtin-annotate.c
> @@ -564,8 +564,8 @@ static int __cmd_annotate(void)
>  	if (verbose > 2)
>  		dsos__fprintf(stdout);
>  
> -	perf_session__collapse_resort(session);
> -	perf_session__output_resort(session, session->event_total[0]);
> +	perf_session__collapse_resort(&session->hists);
> +	perf_session__output_resort(&session->hists, session->event_total[0]);
>  	perf_session__find_annotations(session);
>  out_delete:
>  	perf_session__delete(session);
> diff --git a/tools/perf/builtin-diff.c b/tools/perf/builtin-diff.c
> index 20df735..d2781fb 100644
> --- a/tools/perf/builtin-diff.c
> +++ b/tools/perf/builtin-diff.c
> @@ -115,7 +115,7 @@ static void perf_session__resort_hist_entries(struct perf_session *self)
>  
>  static void perf_session__set_hist_entries_positions(struct perf_session *self)
>  {
> -	perf_session__output_resort(self, self->events_stats.total);
> +	perf_session__output_resort(&self->hists, self->events_stats.total);
>  	perf_session__resort_hist_entries(self);
>  }
>  
> @@ -167,13 +167,14 @@ static int __cmd_diff(void)
>  			goto out_delete;
>  	}
>  
> -	perf_session__output_resort(session[1], session[1]->events_stats.total);
> +	perf_session__output_resort(&(session[1]->hists), session[1]->events_stats.total);
>  	if (show_displacement)
>  		perf_session__set_hist_entries_positions(session[0]);
>  
>  	perf_session__match_hists(session[0], session[1]);
> -	perf_session__fprintf_hists(session[1], session[0],
> -				    show_displacement, stdout);
> +	perf_session__fprintf_hists(&(session[1]->hists), session[0],
> +				    show_displacement, stdout,
> +				    session[1]->events_stats.total);
>  out_delete:
>  	for (i = 0; i < 2; ++i)
>  		perf_session__delete(session[i]);
> diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
> index 55dd911..73ebb6f 100644
> --- a/tools/perf/util/hist.c
> +++ b/tools/perf/util/hist.c
> @@ -130,7 +130,7 @@ static void collapse__insert_entry(struct rb_root *root, struct hist_entry *he)
>  	rb_insert_color(&he->rb_node, root);
>  }
>  
> -void perf_session__collapse_resort(struct perf_session *self)
> +void perf_session__collapse_resort(struct rb_root *hists)
>  {
>  	struct rb_root tmp;
>  	struct rb_node *next;
> @@ -140,17 +140,17 @@ void perf_session__collapse_resort(struct perf_session *self)
>  		return;
>  
>  	tmp = RB_ROOT;
> -	next = rb_first(&self->hists);
> +	next = rb_first(hists);
>  
>  	while (next) {
>  		n = rb_entry(next, struct hist_entry, rb_node);
>  		next = rb_next(&n->rb_node);
>  
> -		rb_erase(&n->rb_node, &self->hists);
> +		rb_erase(&n->rb_node, hists);
>  		collapse__insert_entry(&tmp, n);
>  	}
>  
> -	self->hists = tmp;
> +	*hists = tmp;
>  }
>  
>  /*
> @@ -183,7 +183,7 @@ static void perf_session__insert_output_hist_entry(struct rb_root *root,
>  	rb_insert_color(&he->rb_node, root);
>  }
>  
> -void perf_session__output_resort(struct perf_session *self, u64 total_samples)
> +void perf_session__output_resort(struct rb_root *hists, u64 total_samples)
>  {
>  	struct rb_root tmp;
>  	struct rb_node *next;
> @@ -194,18 +194,18 @@ void perf_session__output_resort(struct perf_session *self, u64 total_samples)
>  		total_samples * (callchain_param.min_percent / 100);
>  
>  	tmp = RB_ROOT;
> -	next = rb_first(&self->hists);
> +	next = rb_first(hists);
>  
>  	while (next) {
>  		n = rb_entry(next, struct hist_entry, rb_node);
>  		next = rb_next(&n->rb_node);
>  
> -		rb_erase(&n->rb_node, &self->hists);
> +		rb_erase(&n->rb_node, hists);
>  		perf_session__insert_output_hist_entry(&tmp, n,
>  						       min_callchain_hits);
>  	}
>  
> -	self->hists = tmp;
> +	*hists = tmp;
>  }
>  
>  static size_t callchain__fprintf_left_margin(FILE *fp, int left_margin)
> @@ -456,10 +456,10 @@ static size_t hist_entry_callchain__fprintf(FILE *fp, struct hist_entry *self,
>  }
>  
>  static size_t hist_entry__fprintf(struct hist_entry *self,
> -				  struct perf_session *session,
>  				  struct perf_session *pair_session,
>  				  bool show_displacement,
> -				  long displacement, FILE *fp)
> +				  long displacement, FILE *fp,
> +				  u64 session_total)
>  {
>  	struct sort_entry *se;
>  	u64 count, total;
> @@ -474,7 +474,7 @@ static size_t hist_entry__fprintf(struct hist_entry *self,
>  		total = pair_session->events_stats.total;
>  	} else {
>  		count = self->count;
> -		total = session->events_stats.total;
> +		total = session_total;
>  	}
>  
>  	if (total)
> @@ -496,8 +496,8 @@ static size_t hist_entry__fprintf(struct hist_entry *self,
>  
>  		if (total > 0)
>  			old_percent = (count * 100.0) / total;
> -		if (session->events_stats.total > 0)
> -			new_percent = (self->count * 100.0) / session->events_stats.total;
> +		if (session_total > 0)
> +			new_percent = (self->count * 100.0) / session_total;
>  
>  		diff = new_percent - old_percent;
>  
> @@ -544,16 +544,17 @@ static size_t hist_entry__fprintf(struct hist_entry *self,
>  			left_margin -= thread__comm_len(self->thread);
>  		}
>  
> -		hist_entry_callchain__fprintf(fp, self, session->events_stats.total,
> +		hist_entry_callchain__fprintf(fp, self, session_total,
>  					      left_margin);
>  	}
>  
>  	return ret;
>  }
>  
> -size_t perf_session__fprintf_hists(struct perf_session *self,
> +size_t perf_session__fprintf_hists(struct rb_root *hists,
>  				   struct perf_session *pair,
> -				   bool show_displacement, FILE *fp)
> +				   bool show_displacement, FILE *fp,
> +				   u64 session_total)
>  {
>  	struct sort_entry *se;
>  	struct rb_node *nd;
> @@ -641,7 +642,7 @@ size_t perf_session__fprintf_hists(struct perf_session *self,
>  	fprintf(fp, "\n#\n");
>  
>  print_entries:
> -	for (nd = rb_first(&self->hists); nd; nd = rb_next(nd)) {
> +	for (nd = rb_first(hists); nd; nd = rb_next(nd)) {
>  		struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
>  
>  		if (show_displacement) {
> @@ -652,8 +653,8 @@ print_entries:
>  				displacement = 0;
>  			++position;
>  		}
> -		ret += hist_entry__fprintf(h, self, pair, show_displacement,
> -					   displacement, fp);
> +		ret += hist_entry__fprintf(h, pair, show_displacement,
> +					   displacement, fp, session_total);
>  	}
>  
>  	free(rem_sq_bracket);
> diff --git a/tools/perf/util/hist.h b/tools/perf/util/hist.h
> index 7b48590..16f360c 100644
> --- a/tools/perf/util/hist.h
> +++ b/tools/perf/util/hist.h
> @@ -20,9 +20,10 @@ extern int64_t hist_entry__cmp(struct hist_entry *, struct hist_entry *);
>  extern int64_t hist_entry__collapse(struct hist_entry *, struct hist_entry *);
>  void hist_entry__free(struct hist_entry *);
>  
> -void perf_session__output_resort(struct perf_session *self, u64 total_samples);
> -void perf_session__collapse_resort(struct perf_session *self);
> -size_t perf_session__fprintf_hists(struct perf_session *self,
> +void perf_session__output_resort(struct rb_root *hists, u64 total_samples);
> +void perf_session__collapse_resort(struct rb_root *hists);
> +size_t perf_session__fprintf_hists(struct rb_root *hists,
>  				   struct perf_session *pair,
> -				   bool show_displacement, FILE *fp);
> +				   bool show_displacement, FILE *fp,
> +				   u64 session_total);
>  #endif	/* __PERF_HIST_H */
> -- 
> 1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ