From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 0F4A61066 for ; Mon, 23 Apr 2018 21:56:03 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 63DF321CA9; Mon, 23 Apr 2018 15:56:03 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 23 Apr 2018 15:56:03 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=qMnOycQTfDlvjduPn0NW6LF/BZ PaW/nxetdtp6dwKFs=; b=PPSxG9YR6HS9EB6hziyXD5WGRCEnLRdNRZNRumM5Iq KD+zFIDWmB0lo9vnZOFYyLNFkVw8HJS6tWsP7UmhdurlMc038+Ow4j/HuoneBPlO NKF4OYky1h6xgxxFP42nFaY2kisgFXaO1bgo0i9Lp93nuq6flrDTu2py9OkWzXgT Q= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=qMnOyc QTfDlvjduPn0NW6LF/BZPaW/nxetdtp6dwKFs=; b=b31evLTt2C0BgqYhn4hieF t0S3fhZWbopVbYSjdT/QsBCyq95YhVKm66lyiHdthjkfz9ezk9juqb9q9v+HtnBd NJshDmjDoBxBHyTy6lToWliF2OZxE/JLwod2WclCS72NIbaA4iZAh/f08IEq7eYt x3k9fE9hm+/0tt2gclwpfl21AismCdrk2FAvVtjIBSWbKrQbDJx3qQpD79TUKehb fzSiVnsFdDS3Qr6WXeTfE+N0TB/J6//cLDup7/WDDSmR4FRG8vbBBhq2/mCTXGPI F0thv6VN8tkG1FdNfqOFMNt+cYrhGn4SIdXd/Ip3oqqK3MzwEdIbZcsE4Mwis20g == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id A13BAE4B94; Mon, 23 Apr 2018 15:56:02 -0400 (EDT) From: Thomas Monjalon To: "Burakov, Anatoly" Cc: dev@dpdk.org, Bruce Richardson Date: Mon, 23 Apr 2018 21:56:01 +0200 Message-ID: <1528313.VrkqK0vgdz@xps> In-Reply-To: References: <738d08e521a8987ceeb2748db5b765d8b8531e54.1524481846.git.anatoly.burakov@intel.com> <20180423124832.GA100540@bricha3-MOBL.ger.corp.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] fbarray: make all fbarrays hidden 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: Mon, 23 Apr 2018 19:56:04 -0000 23/04/2018 15:47, Burakov, Anatoly: > On 23-Apr-18 1:48 PM, Bruce Richardson wrote: > > On Mon, Apr 23, 2018 at 12:14:13PM +0100, Anatoly Burakov wrote: > >> fbarray stores its data in a shared file, which is not hidden. > >> This leads to polluting user's HOME directory with visible > >> files when running DPDK as non-root. Change fbarray to always > >> create hidden files by default. > >> > >> Signed-off-by: Anatoly Burakov > >> --- > >> > >> Notes: > >> Is /tmp always user-accessible? Maybe not use home > >> directory at all? > >> > > Good change. > > > > Acked-by: Bruce Richardson Applied, thanks > > A further improvement would to put the files as not-hidden but inside a > > hidden subdirectory e.g. ".dpdk" > > Good suggestions, I'll work on this. There are other places where we create file. Please try to move all in the same place.