From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932967AbbGGWw4 (ORCPT ); Tue, 7 Jul 2015 18:52:56 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:38773 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751257AbbGGWwu (ORCPT ); Tue, 7 Jul 2015 18:52:50 -0400 Date: Wed, 8 Jul 2015 00:52:40 +0200 From: Peter Zijlstra To: Arnaldo Carvalho de Melo Cc: Adrian Hunter , Andi Kleen , Ingo Molnar , linux-kernel@vger.kernel.org, Jiri Olsa , Stephane Eranian , mathieu.poirier@linaro.org, Pawel Moll Subject: Re: [PATCH V3 1/4] perf: Add PERF_RECORD_SWITCH to indicate context switches Message-ID: <20150707225240.GW3644@twins.programming.kicks-ass.net> References: <1436258202-6540-1-git-send-email-adrian.hunter@intel.com> <1436258202-6540-2-git-send-email-adrian.hunter@intel.com> <20150707132552.GA3326@kernel.org> <20150707134437.GC3326@kernel.org> <20150707153614.GT3644@twins.programming.kicks-ass.net> <20150707161359.GL3326@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150707161359.GL3326@kernel.org> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jul 07, 2015 at 01:13:59PM -0300, Arnaldo Carvalho de Melo wrote: > Em Tue, Jul 07, 2015 at 05:36:14PM +0200, Peter Zijlstra escreveu: > > > To help userspace in places where all it has is the union perf_event, we > > > can reuse one bit in misc to state that, i.e. > > > > #define PERF_RECORD_MISC_SWITCH_NEXT_PREV_PID 14 > > > > For instance. > > > The other option would be a separate RECORD type, which might be > > simpler. > > Humm, do we really need it? > > I think this is just us wanting to, since we are going to add a new > record, to make it more useful for other, not right now needed, > situations, i.e. if the user is priviledged, there are two other options > to get his info, right? I was just thinking that 2 records, each with a fixed layout would be easier to parse than 1 record with variable layout. The record space is immense, so from that point it really doesn't matter. Do whatever is easiest, less mistakes get made etc. :-) No real preference either way, as long we we've thought about it.