Re: [PATCH 61/61] perf tools: Fix width computation for srcline sort entry

2016-09-19 Thread Arnaldo Carvalho de Melo
Em Mon, Sep 19, 2016 at 04:49:34PM +0200, Jiri Olsa escreveu:
> On Mon, Sep 19, 2016 at 11:33:19AM -0300, Arnaldo Carvalho de Melo wrote:
> > Em Mon, Sep 19, 2016 at 03:10:10PM +0200, Jiri Olsa escreveu:
> > > Adding header size to width computation for srcline sort entry,
> > > because it's possible to get empty data with ':0' which set width
> > > of 2 which is lower than width needed to display column header.
> > 
> > Thanks, cherry-picked, looking at the larger patchset.
> 
> oops, it's on this side of the patchset because it needs
> sort_srcline to be global, which is done within the patchset..
> 
> I can separate that for v4 if it's needed ;-)

I noticed, I'll fix it up :-)

- Arnaldo
 
> thanks,
> jirka
> 
> > 
> > - Arnaldo
> >  
> > > Link: http://lkml.kernel.org/n/tip-twbp391v8v9f5idp584hl...@git.kernel.org
> > > Signed-off-by: Jiri Olsa 
> > > ---
> > >  tools/perf/util/hist.c | 6 --
> > >  1 file changed, 4 insertions(+), 2 deletions(-)
> > > 
> > > diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
> > > index 020efa9d3d74..e1be4132054d 100644
> > > --- a/tools/perf/util/hist.c
> > > +++ b/tools/perf/util/hist.c
> > > @@ -177,8 +177,10 @@ void hists__calc_col_len(struct hists *hists, struct 
> > > hist_entry *h)
> > >   hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
> > >   hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
> > >  
> > > - if (h->srcline)
> > > - hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline));
> > > + if (h->srcline) {
> > > + len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header));
> > > + hists__new_col_len(hists, HISTC_SRCLINE, len);
> > > + }
> > >  
> > >   if (h->srcfile)
> > >   hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
> > > -- 
> > > 2.7.4


Re: [PATCH 61/61] perf tools: Fix width computation for srcline sort entry

2016-09-19 Thread Arnaldo Carvalho de Melo
Em Mon, Sep 19, 2016 at 04:49:34PM +0200, Jiri Olsa escreveu:
> On Mon, Sep 19, 2016 at 11:33:19AM -0300, Arnaldo Carvalho de Melo wrote:
> > Em Mon, Sep 19, 2016 at 03:10:10PM +0200, Jiri Olsa escreveu:
> > > Adding header size to width computation for srcline sort entry,
> > > because it's possible to get empty data with ':0' which set width
> > > of 2 which is lower than width needed to display column header.
> > 
> > Thanks, cherry-picked, looking at the larger patchset.
> 
> oops, it's on this side of the patchset because it needs
> sort_srcline to be global, which is done within the patchset..
> 
> I can separate that for v4 if it's needed ;-)

I noticed, I'll fix it up :-)

- Arnaldo
 
> thanks,
> jirka
> 
> > 
> > - Arnaldo
> >  
> > > Link: http://lkml.kernel.org/n/tip-twbp391v8v9f5idp584hl...@git.kernel.org
> > > Signed-off-by: Jiri Olsa 
> > > ---
> > >  tools/perf/util/hist.c | 6 --
> > >  1 file changed, 4 insertions(+), 2 deletions(-)
> > > 
> > > diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
> > > index 020efa9d3d74..e1be4132054d 100644
> > > --- a/tools/perf/util/hist.c
> > > +++ b/tools/perf/util/hist.c
> > > @@ -177,8 +177,10 @@ void hists__calc_col_len(struct hists *hists, struct 
> > > hist_entry *h)
> > >   hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
> > >   hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
> > >  
> > > - if (h->srcline)
> > > - hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline));
> > > + if (h->srcline) {
> > > + len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header));
> > > + hists__new_col_len(hists, HISTC_SRCLINE, len);
> > > + }
> > >  
> > >   if (h->srcfile)
> > >   hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
> > > -- 
> > > 2.7.4


Re: [PATCH 61/61] perf tools: Fix width computation for srcline sort entry

2016-09-19 Thread Jiri Olsa
On Mon, Sep 19, 2016 at 11:33:19AM -0300, Arnaldo Carvalho de Melo wrote:
> Em Mon, Sep 19, 2016 at 03:10:10PM +0200, Jiri Olsa escreveu:
> > Adding header size to width computation for srcline sort entry,
> > because it's possible to get empty data with ':0' which set width
> > of 2 which is lower than width needed to display column header.
> 
> Thanks, cherry-picked, looking at the larger patchset.

oops, it's on this side of the patchset because it needs
sort_srcline to be global, which is done within the patchset..

I can separate that for v4 if it's needed ;-)

thanks,
jirka

> 
> - Arnaldo
>  
> > Link: http://lkml.kernel.org/n/tip-twbp391v8v9f5idp584hl...@git.kernel.org
> > Signed-off-by: Jiri Olsa 
> > ---
> >  tools/perf/util/hist.c | 6 --
> >  1 file changed, 4 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
> > index 020efa9d3d74..e1be4132054d 100644
> > --- a/tools/perf/util/hist.c
> > +++ b/tools/perf/util/hist.c
> > @@ -177,8 +177,10 @@ void hists__calc_col_len(struct hists *hists, struct 
> > hist_entry *h)
> > hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
> > hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
> >  
> > -   if (h->srcline)
> > -   hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline));
> > +   if (h->srcline) {
> > +   len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header));
> > +   hists__new_col_len(hists, HISTC_SRCLINE, len);
> > +   }
> >  
> > if (h->srcfile)
> > hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
> > -- 
> > 2.7.4


Re: [PATCH 61/61] perf tools: Fix width computation for srcline sort entry

2016-09-19 Thread Jiri Olsa
On Mon, Sep 19, 2016 at 11:33:19AM -0300, Arnaldo Carvalho de Melo wrote:
> Em Mon, Sep 19, 2016 at 03:10:10PM +0200, Jiri Olsa escreveu:
> > Adding header size to width computation for srcline sort entry,
> > because it's possible to get empty data with ':0' which set width
> > of 2 which is lower than width needed to display column header.
> 
> Thanks, cherry-picked, looking at the larger patchset.

oops, it's on this side of the patchset because it needs
sort_srcline to be global, which is done within the patchset..

I can separate that for v4 if it's needed ;-)

thanks,
jirka

> 
> - Arnaldo
>  
> > Link: http://lkml.kernel.org/n/tip-twbp391v8v9f5idp584hl...@git.kernel.org
> > Signed-off-by: Jiri Olsa 
> > ---
> >  tools/perf/util/hist.c | 6 --
> >  1 file changed, 4 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
> > index 020efa9d3d74..e1be4132054d 100644
> > --- a/tools/perf/util/hist.c
> > +++ b/tools/perf/util/hist.c
> > @@ -177,8 +177,10 @@ void hists__calc_col_len(struct hists *hists, struct 
> > hist_entry *h)
> > hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
> > hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
> >  
> > -   if (h->srcline)
> > -   hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline));
> > +   if (h->srcline) {
> > +   len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header));
> > +   hists__new_col_len(hists, HISTC_SRCLINE, len);
> > +   }
> >  
> > if (h->srcfile)
> > hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
> > -- 
> > 2.7.4


Re: [PATCH 61/61] perf tools: Fix width computation for srcline sort entry

2016-09-19 Thread Arnaldo Carvalho de Melo
Em Mon, Sep 19, 2016 at 03:10:10PM +0200, Jiri Olsa escreveu:
> Adding header size to width computation for srcline sort entry,
> because it's possible to get empty data with ':0' which set width
> of 2 which is lower than width needed to display column header.

Thanks, cherry-picked, looking at the larger patchset.

- Arnaldo
 
> Link: http://lkml.kernel.org/n/tip-twbp391v8v9f5idp584hl...@git.kernel.org
> Signed-off-by: Jiri Olsa 
> ---
>  tools/perf/util/hist.c | 6 --
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
> index 020efa9d3d74..e1be4132054d 100644
> --- a/tools/perf/util/hist.c
> +++ b/tools/perf/util/hist.c
> @@ -177,8 +177,10 @@ void hists__calc_col_len(struct hists *hists, struct 
> hist_entry *h)
>   hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
>   hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
>  
> - if (h->srcline)
> - hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline));
> + if (h->srcline) {
> + len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header));
> + hists__new_col_len(hists, HISTC_SRCLINE, len);
> + }
>  
>   if (h->srcfile)
>   hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
> -- 
> 2.7.4


Re: [PATCH 61/61] perf tools: Fix width computation for srcline sort entry

2016-09-19 Thread Arnaldo Carvalho de Melo
Em Mon, Sep 19, 2016 at 03:10:10PM +0200, Jiri Olsa escreveu:
> Adding header size to width computation for srcline sort entry,
> because it's possible to get empty data with ':0' which set width
> of 2 which is lower than width needed to display column header.

Thanks, cherry-picked, looking at the larger patchset.

- Arnaldo
 
> Link: http://lkml.kernel.org/n/tip-twbp391v8v9f5idp584hl...@git.kernel.org
> Signed-off-by: Jiri Olsa 
> ---
>  tools/perf/util/hist.c | 6 --
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
> index 020efa9d3d74..e1be4132054d 100644
> --- a/tools/perf/util/hist.c
> +++ b/tools/perf/util/hist.c
> @@ -177,8 +177,10 @@ void hists__calc_col_len(struct hists *hists, struct 
> hist_entry *h)
>   hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
>   hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
>  
> - if (h->srcline)
> - hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline));
> + if (h->srcline) {
> + len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header));
> + hists__new_col_len(hists, HISTC_SRCLINE, len);
> + }
>  
>   if (h->srcfile)
>   hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
> -- 
> 2.7.4


[PATCH 61/61] perf tools: Fix width computation for srcline sort entry

2016-09-19 Thread Jiri Olsa
Adding header size to width computation for srcline sort entry,
because it's possible to get empty data with ':0' which set width
of 2 which is lower than width needed to display column header.

Link: http://lkml.kernel.org/n/tip-twbp391v8v9f5idp584hl...@git.kernel.org
Signed-off-by: Jiri Olsa 
---
 tools/perf/util/hist.c | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
index 020efa9d3d74..e1be4132054d 100644
--- a/tools/perf/util/hist.c
+++ b/tools/perf/util/hist.c
@@ -177,8 +177,10 @@ void hists__calc_col_len(struct hists *hists, struct 
hist_entry *h)
hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
 
-   if (h->srcline)
-   hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline));
+   if (h->srcline) {
+   len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header));
+   hists__new_col_len(hists, HISTC_SRCLINE, len);
+   }
 
if (h->srcfile)
hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
-- 
2.7.4



[PATCH 61/61] perf tools: Fix width computation for srcline sort entry

2016-09-19 Thread Jiri Olsa
Adding header size to width computation for srcline sort entry,
because it's possible to get empty data with ':0' which set width
of 2 which is lower than width needed to display column header.

Link: http://lkml.kernel.org/n/tip-twbp391v8v9f5idp584hl...@git.kernel.org
Signed-off-by: Jiri Olsa 
---
 tools/perf/util/hist.c | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
index 020efa9d3d74..e1be4132054d 100644
--- a/tools/perf/util/hist.c
+++ b/tools/perf/util/hist.c
@@ -177,8 +177,10 @@ void hists__calc_col_len(struct hists *hists, struct 
hist_entry *h)
hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
 
-   if (h->srcline)
-   hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline));
+   if (h->srcline) {
+   len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header));
+   hists__new_col_len(hists, HISTC_SRCLINE, len);
+   }
 
if (h->srcfile)
hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
-- 
2.7.4