From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751291AbdFAL3s (ORCPT ); Thu, 1 Jun 2017 07:29:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55306 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751113AbdFAL3p (ORCPT ); Thu, 1 Jun 2017 07:29:45 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 3CC2537EEC Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=jolsa@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 3CC2537EEC Date: Thu, 1 Jun 2017 13:29:31 +0200 From: Jiri Olsa To: Namhyung Kim Cc: Arnaldo Carvalho de Melo , Ingo Molnar , Peter Zijlstra , Jiri Olsa , LKML , kernel-team@lge.com, David Ahern , Adrian Hunter Subject: Re: [PATCH 1/2] perf tools: Decompress kernel module when reading DSO data Message-ID: <20170601112931.GA15888@krava> References: <20170601090605.5809-1-namhyung@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170601090605.5809-1-namhyung@kernel.org> User-Agent: Mutt/1.8.0 (2017-02-23) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Thu, 01 Jun 2017 11:29:35 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jun 01, 2017 at 06:06:04PM +0900, Namhyung Kim wrote: SNIP > @@ -399,6 +438,7 @@ static int __open_dso(struct dso *dso, struct machine *machine) > int fd; > char *root_dir = (char *)""; > char *name = malloc(PATH_MAX); > + bool needs_unlink = false; > > if (!name) > return -ENOMEM; > @@ -415,7 +455,23 @@ static int __open_dso(struct dso *dso, struct machine *machine) > if (!is_regular_file(name)) > return -EINVAL; > > + if (dso__needs_decompress(dso)) { > + char buf[32]; > + > + fd = dso__decompress_kmodule(dso, name, buf, sizeof(buf)); > + if (fd < 0) free(name) > + return -1; > + > + close(fd); > + strcpy(name, buf); also why not use name directly instead of buf? jirka