From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7932AA0032; Fri, 17 Jun 2022 19:23:28 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3204F42B6D; Fri, 17 Jun 2022 19:23:17 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 2527A4282A for ; Fri, 17 Jun 2022 19:23:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655486595; x=1687022595; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=zzz/VFhyn0hDugyBNXQc5uVQ04s4LWurRATkGX+lkUg=; b=P3bY2WUJvRaHGYiVX45gzv0Ny5wPEx59tx0IDARis/IdDFNnvDviDrJW xdtjaaFWtKcRHHgSEQhxRPJ0B/phyymsnXEVIOEYT9VOEk+D/L66c+YoL qD3aeDR851V39ADMqk8J0+5PdsGiL5987/vy93aK5r2CfX032JFpmv5lz DCVbu8pJ2K4X+Bz0S12fQAwyQSjoPBGO9sC5WhUcJn0n/P6zhuNyiE1xB B9lsYIJDndZ3B1sB/OuQ2GXzuANtzqwY+J7IkW3sgm1VjqYn+6W0X9LEC TbxvOWXW9A12gBP2Fi9WvpoFI4cuCIiusF5m3G7ciLRFE+/S7wwU11OKO Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="365837549" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="365837549" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 08:50:40 -0700 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="763286261" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.10.212]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 17 Jun 2022 08:50:27 -0700 Date: Fri, 17 Jun 2022 16:50:23 +0100 From: Bruce Richardson To: Dmitry Kozlyuk Cc: dev@dpdk.org Subject: Re: [PATCH v2 1/4] usertools: add option to select hugetlbfs directory Message-ID: References: <20220607234949.2311884-1-dkozlyuk@nvidia.com> <20220617112508.3823291-1-dkozlyuk@nvidia.com> <20220617112508.3823291-2-dkozlyuk@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220617112508.3823291-2-dkozlyuk@nvidia.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Fri, Jun 17, 2022 at 02:25:05PM +0300, Dmitry Kozlyuk wrote: > dpdk-hugepages.py had /dev/hugepages hardcoded as the mount point. > It may be desirable to setup hugepage directory at another path, > for example, when using hugepages of multiple sizes in different > directories or when granting different permissions to mount points. > Add --directory/-d option to the script. > > Signed-off-by: Dmitry Kozlyuk Acked-by: Bruce Richardson