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 6FDD0A0C47; Tue, 6 Jul 2021 11:43:44 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7B2D84126B; Tue, 6 Jul 2021 11:43:43 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 1D7B04120E for ; Tue, 6 Jul 2021 11:43:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1625564621; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=RggEVNDtACKdxCC/241WHePrM9Sudvcqwd30MU6WEqs=; b=Hbi2HCZEbLCNkl+Gtc7HCDg9Ff7cfGHKMED/Rd0KMcYzoJepYWbWwGQ+Vhl5EKFPw5jNDX SH208bzb9152bjzi8DsUIWsD+QpQGEFxv/gXkCB/5iRpgms+BccDLJ1XhmFfh4hKj8vN0X QjdcL0o7CiEPheBGfY5TvBzX6NRJrIc= Received: from mail-vs1-f70.google.com (mail-vs1-f70.google.com [209.85.217.70]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-53-gKvFWh_ENEOZ_IILD_D05Q-1; Tue, 06 Jul 2021 05:43:38 -0400 X-MC-Unique: gKvFWh_ENEOZ_IILD_D05Q-1 Received: by mail-vs1-f70.google.com with SMTP id v27-20020a67c89b0000b02902227f70aa8fso4610313vsk.6 for ; Tue, 06 Jul 2021 02:43:38 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=RggEVNDtACKdxCC/241WHePrM9Sudvcqwd30MU6WEqs=; b=oNmebkzujV0tfxAqNSadRRWyWn5t9UDh7QFWZ6jmY5/sOwl08x4Nno0LNLV3NDjrGR alDkGbF8uqcgBMbRXsIGarJovc9VYZpCNuNY2tbPOnQ+xGq46D5wm3Ata6XU3vwripCZ jIji0VveNSVURVvzGTSeQlZ7T3eeJIISLnfLGfp1n9fK2zvSAE5T50jnh22RT8SlrMCS gJx045waUlpon2QhpJjYupMd/IHZYORB38M1c4cvWLDbGhdMn9SZx3MHigFk3ueM76qm eZoWRXTuaeXil7k86cUeDvK8cdOahdW20zWCRImlv/rgTJCvFVaX9xU01demn4bXUqc6 eHvA== X-Gm-Message-State: AOAM533IWtBwJfWzVov/BkGjuulhseUj0Arm68OZbj6L4C1nAgeAMYrn 9ij0a8UakKp5eM4Benw98cVPePhO7X/HTDVTEBqFPInzp9d89/GUwD24btMTOlkHnNlHAzDGAvu jMGEujbF73WAm8DSe7YE= X-Received: by 2002:a67:df85:: with SMTP id x5mr13711888vsk.17.1625564617682; Tue, 06 Jul 2021 02:43:37 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy2xBKr3Pha8/8SvN6AoLiMPXKsshJQpZDfI3tm7R9vdGYw36/KU3C8ukLU9LgrZhtmva3vaOBi4u1Z0Fv3pxU= X-Received: by 2002:a67:df85:: with SMTP id x5mr13711877vsk.17.1625564617437; Tue, 06 Jul 2021 02:43:37 -0700 (PDT) MIME-Version: 1.0 References: <20210610210521.830303-1-john.levon@nutanix.com> <20210625104449.2096166-1-john.levon@nutanix.com> In-Reply-To: <20210625104449.2096166-1-john.levon@nutanix.com> From: David Marchand Date: Tue, 6 Jul 2021 11:43:26 +0200 Message-ID: To: "Burakov, Anatoly" Cc: dev , John Levon , levon@movementarian.org Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH RESEND] eal: allow hugetlbfs sub-directories 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 Sender: "dev" Hello Anatoly, On Fri, Jun 25, 2021 at 12:46 PM John Levon wrote: > > get_hugepage_dir() was implemented in such a way that a --huge-dir option > had to exactly match the mountpoint, but there's no reason for this > restriction. Fix the implementation to allow a sub-directory within a > suitable hugetlbfs mountpoint to be specified. Review please. > > Signed-off-by: John Levon -- David Marchand