From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753315Ab3LJNta (ORCPT ); Tue, 10 Dec 2013 08:49:30 -0500 Received: from mail-qc0-f171.google.com ([209.85.216.171]:55420 "EHLO mail-qc0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751905Ab3LJNt2 (ORCPT ); Tue, 10 Dec 2013 08:49:28 -0500 Date: Tue, 10 Dec 2013 10:49:20 -0300 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: Adrian Hunter , linux-kernel@vger.kernel.org, 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: <20131210134920.GO8098@ghostprotocols.net> References: <1386617830-18926-1-git-send-email-acme@infradead.org> <20131210111229.GB26659@gmail.com> <20131210114421.GI8098@ghostprotocols.net> <52A70558.90808@intel.com> <20131210121801.GC30001@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131210121801.GC30001@gmail.com> 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, Dec 10, 2013 at 01:18:01PM +0100, Ingo Molnar escreveu: > > * Adrian Hunter wrote: > > > -void dso__set_short_name(struct dso *dso, const char *name) > > +void dso__set_short_name(struct dso *dso, const char *name, bool sname_alloc) > > { > > if (name == NULL) > > return; > > + if (dso->sname_alloc) > > + free((char *)dso->short_name); > > + dso->sname_alloc = sname_alloc; > > Calling the function option the same as the field name is asking for > trouble - I'd suggest 'new_sname_alloc' for the parameter, or so. > > And I'd also remove the 'const' from struct dso::short_name, it > probably does not help code generation, because 'dso' is passed in as > const in all the non-lifetime methods anyway. > That way the cast can be dropped from the free(). Not that simple, there are multiple places that pass a constant short_name, for instance: machine__get_kernel() kernel = dso__kernel_findnew(machine, vmlinux_name, "[kernel]", DSO_TYPE_KERNEL); dso__set_short_name(dso, short_name); So dso->short_name will point to "[kernel]", which is a const char *. > Similar problems exist with the usage of 'short_name' - it overloads > the field name which makes it somewhat confusing, and it's also > sometimes inconsistently named, such as 'name' in > dso__set_short_name(). > > Ditto for 'long_name' handling. > > Also, the 'sname_alloc' name sucks, it does not make it obvious that > it's related to 'short_name', hiding its true significance (and hiding > the broken life time handling of the flag/pointer combo). I'd rename > it to something more descriptive, like ->short_name_allocated - or I'd > rename everything to 'sname'/'lname' naming for short/long names. Ok, we can use rename it to short_name_alloc, like we have short_name_len. > Every time one runs into a crash like this it's a canary signal that > cleanliness principles need hardening. Hardening we go then! > Thanks, > > Ingo