From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755452Ab3KLPID (ORCPT ); Tue, 12 Nov 2013 10:08:03 -0500 Received: from mail-yh0-f44.google.com ([209.85.213.44]:40744 "EHLO mail-yh0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752482Ab3KLPH7 (ORCPT ); Tue, 12 Nov 2013 10:07:59 -0500 Date: Tue, 12 Nov 2013 12:07:51 -0300 From: Arnaldo Carvalho de Melo To: Peter Zijlstra Cc: David Ahern , linux-kernel@vger.kernel.org, mingo@kernel.org, jolsa@redhat.com, Frederic Weisbecker , Namhyung Kim , Mike Galbraith , Stephane Eranian Subject: Re: [PATCH 4/5] perf record: mmap output file - v5 Message-ID: <20131112150751.GA19321@ghostprotocols.net> References: <1384267617-3446-1-git-send-email-dsahern@gmail.com> <1384267617-3446-5-git-send-email-dsahern@gmail.com> <20131112145707.GV5056@laptop.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131112145707.GV5056@laptop.programming.kicks-ass.net> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Tue, Nov 12, 2013 at 03:57:07PM +0100, Peter Zijlstra escreveu: > On Tue, Nov 12, 2013 at 07:46:56AM -0700, David Ahern wrote: > > When recording raw_syscalls for the entire system, e.g., > > perf record -e raw_syscalls:*,sched:sched_switch -a -- sleep 1 > > > > you end up with a negative feedback loop as perf itself calls write() fairly > > often. This patch handles the problem by mmap'ing the file in chunks of 64M at > > a time and copies events from the event buffers to the file avoiding write > > system calls. > > You know this completely fails the moment you trace faults, because > every new access to one of those pages (to mark it dirty) will trigger a > fault. And we'll take a bunch more faults -- one for each page -- than > we ever did write() syscalls. So we should provide a neon lettered warning when doing that, no? :-) > Anyway the over all performance improvements still make it worth it. But > the above seems like a false argument in favour of this.