From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by smtp.lore.kernel.org (Postfix) with ESMTP id 81456C433EF for ; Fri, 24 Jun 2022 09:02:19 +0000 (UTC) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D975C40A87; Fri, 24 Jun 2022 11:02:18 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id B70284069D for ; Fri, 24 Jun 2022 11:02:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1656061337; x=1687597337; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=Y+Epf4EghdQQ2POu9wMGXP2shJ3tyWt4XQYzKq6Qf1I=; b=Ke78CY7L9++AD99ceJuhQqhnTF/bide7LMQ48zXRKKQidXY4D2HClUVu RT/LvFKaedYAsUkGbo0JfK5dGbg/oCPTn5yzlnFkjAiX2UWqGjXMz+6eA ZbhraUpij5GxPjdi+JcPn6WGtXukr+la0EX3fOPjkKpgLyqB1rIHjWJvz QCJG3aZHE2U/inkgHO7RPlxq4o7r16R8X5tb2LAOw8HxQ24+Qi/Vkv2xH espH7CVJFsU7XIJFJBkMOr3CV5biQ8jZDZhlQ56Us3nlxyNaI/jvOM6JD +QtKS4OyAE/Boi/aZ3+K/C3U70jw7ildBQ0+9aKGyCc6EHHvKawlIJcCs Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10387"; a="260775681" X-IronPort-AV: E=Sophos;i="5.92,218,1650956400"; d="scan'208";a="260775681" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Jun 2022 02:02:16 -0700 X-IronPort-AV: E=Sophos;i="5.92,218,1650956400"; d="scan'208";a="593140730" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.25.171]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 24 Jun 2022 02:02:15 -0700 Date: Fri, 24 Jun 2022 10:02:11 +0100 From: Bruce Richardson To: Dmitry Kozlyuk Cc: dev@dpdk.org Subject: Re: [PATCH v3 1/5] usertools: add option to select hugetlbfs directory Message-ID: References: <20220617112508.3823291-1-dkozlyuk@nvidia.com> <20220624084817.63145-1-dkozlyuk@nvidia.com> <20220624084817.63145-2-dkozlyuk@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220624084817.63145-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 24, 2022 at 11:48:13AM +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