From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id BC722326C for ; Thu, 20 Sep 2018 13:22:25 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Sep 2018 04:22:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.53,398,1531810800"; d="scan'208";a="93376905" Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.107]) by orsmga002.jf.intel.com with SMTP; 20 Sep 2018 04:22:21 -0700 Received: by (sSMTP sendmail emulation); Thu, 20 Sep 2018 12:22:20 +0100 Date: Thu, 20 Sep 2018 12:22:20 +0100 From: Bruce Richardson To: Thomas Monjalon Cc: Adrien Mazarguil , Neil Horman , dev@dpdk.org Message-ID: <20180920112219.GA19844@bricha3-MOBL.ger.corp.intel.com> References: <20180919171629.19760-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180919171629.19760-1-thomas@monjalon.net> Organization: Intel Research and Development Ireland Ltd. User-Agent: Mutt/1.10.1 (2018-07-13) Subject: Re: [dpdk-dev] [PATCH] devtools: use a common prefix for temporary files X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Sep 2018 11:22:26 -0000 On Wed, Sep 19, 2018 at 07:16:29PM +0200, Thomas Monjalon wrote: > Some temporary files were generated in /tmp, others in the current > directory, and none was "dpdk prefixed". > > All these files have a common path prefix now: $TMPDIR/dpdk. > TMPDIR is /tmp by default. > > Note: the previous use of mktemp, with a template but without -t, > was generating a file in the current directory. > > Signed-off-by: Thomas Monjalon > --- Acked-by: Bruce Richardson