All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Namhyung Kim <namhyung@kernel.org>
Cc: Ingo Molnar <mingo@kernel.org>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Jiri Olsa <jolsa@redhat.com>, LKML <linux-kernel@vger.kernel.org>,
	David Ahern <dsahern@gmail.com>
Subject: Re: [PATCH 3/7] perf tools: Move TUI-specific fields to struct hist_entry_tui
Date: Mon, 20 Apr 2015 16:44:11 -0300	[thread overview]
Message-ID: <20150420194411.GI11111@kernel.org> (raw)
In-Reply-To: <1429534850-13526-4-git-send-email-namhyung@kernel.org>

Em Mon, Apr 20, 2015 at 10:00:46PM +0900, Namhyung Kim escreveu:
> +++ b/tools/perf/ui/browsers/hists.c
> @@ -61,7 +61,7 @@ static int hist_browser__get_folding(struct hist_browser *browser)
>  			rb_entry(nd, struct hist_entry, rb_node);
  
>  		if (he->ms.unfolded)
> -			unfolded_rows += he->nr_rows;
> +			unfolded_rows += he->tui.nr_rows;

To avoid all these changes, I wonder if we can't use unamed structs in
addition to the unnamed union?

Like this what is done in include/net/sock.h, struct sock_common, and
here:

[root@zoo ~]# cat unnamed_struct_union.c 
#include <stdbool.h>
#include <stdio.h>

struct hist_entry {
	union {
		struct /* tui */ {
			int nr_rows;
			int row_offset;
			/* other fields */
		};
		struct /* diff */ {
			bool computed;
			/* other fields */
		};
	};
};

int main(int argc, char *argv[])
{
	struct hist_entry he = { .nr_rows = 11, .row_offset = 19, };
	
	printf("he.nr_rows=%d, he.row_offset=%d\n", he.nr_rows,
he.row_offset);
}
[root@zoo ~]# make unnamed_struct_union
cc     unnamed_struct_union.c   -o unnamed_struct_union
[root@zoo ~]# ./unnamed_struct_union 
he.nr_rows=11, he.row_offset=19
[root@zoo ~]#

- Arnaldo

  reply	other threads:[~2015-04-20 19:44 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-20 13:00 [PATCHSET 0/7] perf tools: Assorted cleanup for TUI (v2) Namhyung Kim
2015-04-20 13:00 ` [PATCH 1/7] perf tools: Get rid of position field from struct hist_entry Namhyung Kim
2015-04-20 13:00 ` [PATCH 2/7] perf diff: Make hist_entry_diff fields union Namhyung Kim
2015-04-20 13:00 ` [PATCH 3/7] perf tools: Move TUI-specific fields to struct hist_entry_tui Namhyung Kim
2015-04-20 19:44   ` Arnaldo Carvalho de Melo [this message]
2015-04-21  6:34     ` Namhyung Kim
2015-04-20 13:00 ` [PATCH 4/7] perf tools: Move init_have_children field " Namhyung Kim
2015-04-20 13:00 ` [PATCH 5/7] perf hists browser: Fix possible memory leak Namhyung Kim
2015-04-20 13:00 ` [PATCH 6/7] perf hists browser: Split popup menu actions Namhyung Kim
2015-04-20 13:00 ` [PATCH 7/7] perf hists browser: Simplify zooming code a bit Namhyung Kim
  -- strict thread matches above, loose matches on Subject: below --
2015-04-19  4:04 [PATCHSET 0/7] perf tools: Assorted cleanup for TUI (v1) Namhyung Kim
2015-04-19  4:04 ` [PATCH 3/7] perf tools: Move TUI-specific fields to struct hist_entry_tui Namhyung Kim
2015-04-20  8:20   ` Jiri Olsa
2015-04-20 12:10     ` Namhyung Kim

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150420194411.GI11111@kernel.org \
    --to=acme@kernel.org \
    --cc=a.p.zijlstra@chello.nl \
    --cc=dsahern@gmail.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=namhyung@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.