From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752658Ab3LJMHP (ORCPT ); Tue, 10 Dec 2013 07:07:15 -0500 Received: from mail-ea0-f180.google.com ([209.85.215.180]:54353 "EHLO mail-ea0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750765Ab3LJMHM (ORCPT ); Tue, 10 Dec 2013 07:07:12 -0500 Date: Tue, 10 Dec 2013 13:07:07 +0100 From: Ingo Molnar To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Adrian Hunter , Andi Kleen , Ben Cheng , David Ahern , Dongsheng Yang , Frederic Weisbecker , Jiri Olsa , Mike Galbraith , Namhyung Kim , Paul Mackerras , Peter Zijlstra , Stephane Eranian , Steven Rostedt Subject: Re: [GIT PULL 00/21] perf/core improvements and fixes Message-ID: <20131210120707.GB30001@gmail.com> References: <1386617830-18926-1-git-send-email-acme@infradead.org> <20131210111229.GB26659@gmail.com> <20131210114421.GI8098@ghostprotocols.net> <20131210114757.GC29875@gmail.com> <20131210120143.GJ8098@ghostprotocols.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131210120143.GJ8098@ghostprotocols.net> 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 * Arnaldo Carvalho de Melo wrote: > Em Tue, Dec 10, 2013 at 12:47:57PM +0100, Ingo Molnar escreveu: > > * Arnaldo Carvalho de Melo wrote: > > > Em Tue, Dec 10, 2013 at 12:12:29PM +0100, Ingo Molnar escreveu: > > > > Hm, I've unpulled it because 'perf top' crashes on exit, in > > > > dso__delete(): > > > > 495 if (dso->sname_alloc) > > > 496 free((char *)dso->short_name) > > > Btw., instead of trusting flags I'd argue that using the pointer as a > > flag and clearing the pointer too is a much more robust freeing > > pattern in general: > > > if (dso->short_name) { > > free(dso->short_name); > > dso->short_name = NULL; > > } > > > > or so ... > > This is not an unusual idiom, if you look at > tools/perf/util/ev{list,sel}.c, for instance, you'll see it in many > destructors. > > In this case there is a micro optimization where sometimes the > shortname is just a pointer to the tail part of the long name, hence > the flag. Sounds fair. [btw., a tiny nit remains: the cast is probably unnecessary, free() will take any pointer.] Thanks, Ingo