From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f171.google.com (mail-wr0-f171.google.com [209.85.128.171]) by dpdk.org (Postfix) with ESMTP id 030A7DED for ; Fri, 4 May 2018 14:42:38 +0200 (CEST) Received: by mail-wr0-f171.google.com with SMTP id v15-v6so20939484wrm.10 for ; Fri, 04 May 2018 05:42:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infinite-io.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=ILuzQwg7BJd6frOSI0+NNEKtRTaJ1lX07PQRMCGSatU=; b=dwIzY4iCjV3mGFhp/c6EiIyXrSLv+P2Hq3MabCZbuS4XxrjuOsW4uR6QFtqUrersNB 0OA3RckR7/KzgJAf8FufA/5bULqf1DugY2+H3I1oz6Ja9Jioixo7A0uQdP+FauusJHWn 31+idXqqlmAPGfxX2yLZITa9IyedHHVDHbh8I7YRw2l4v4L+a19EJMigcjjCnOEEYoYh SwsAQjumQAH7CLKDicS9xgWDSye5faQqYuMFRTKChRz6wqxKfo/x6/50UbHtVJk6aXVV aR9hQlYROYoxvOBisgehNkuhgpmJrp4RxRHzezf94Y9ttSTGiWWubfCL9ipp6FesWl5G Yv7g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=ILuzQwg7BJd6frOSI0+NNEKtRTaJ1lX07PQRMCGSatU=; b=CkkIn5NhLJvbulhIi846gS+/3YzMBQ+Qn3vvXMXWJ3Yh3DkRqb8Q3b08GmkBDLsrZq HmEo5AO9YGrixeb9EtA7xKRbRVKIGt7Jc7YJCMF+Sx/8A+9P7M7XIV20RRWGWB++C0Sy XVJKLJIhZZzgW9ZiqcO6BOXK/2Gsf6gnVjTu6byQs03RA88Kli7QZdLyM8tg3X6SSsps yELkVSn0R2WKbC5aqf9wwVadCcI/bpO6QMaWv72K8E5Q/qy3CUFmaIOTh+q8S6jaYnu2 SEmMA1a9TPE2atfuh6mWrfMpOVJA7PB0tfcl4ngWfmkm9bpeFkwK9vhSabnEqJr7LZau s84Q== X-Gm-Message-State: ALQs6tB4HsiuBfw7DsoPEAEreYl/XrGT9YPiil2E9BEMkKyKFfy9SDPb KP7SDxS8rU8RGMMXjYVC9QCRG91oTew2hp1aqLggXw== X-Google-Smtp-Source: AB8JxZqsMRN4j9Iz0sW9MZOhz/ZXLbdWkHWVR0aYxnAkZGNls4UkBvABB2Bxn7DUsyCoMz+aviD03eTjQNX+HFMtJ68= X-Received: by 2002:adf:9787:: with SMTP id s7-v6mr23148373wrb.61.1525437758647; Fri, 04 May 2018 05:42:38 -0700 (PDT) MIME-Version: 1.0 Received: by 10.223.169.85 with HTTP; Fri, 4 May 2018 05:42:38 -0700 (PDT) In-Reply-To: References: From: Matt Laswell Date: Fri, 4 May 2018 07:42:38 -0500 Message-ID: To: Krish Cc: users Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-users] Cannot Create mbuf pool X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 May 2018 12:42:39 -0000 That message means that you're not able to allocate memory for your mbuf pool. Usually, it means that either: 1. You haven't allocated enough huge page memory to hold all of the things you've allocated (check the size of your hugepage memory and the pools you're allocating) 2. You don't have permission to get at the huge page memory (run as root). Hope this helps. On Thu, May 3, 2018 at 10:23 PM, Krish wrote: > Hi > > I am facing the following issue while trying to run VMDQ_DCB app. > > "Cause: Cannot create mbuf pool" > > > Any help is appreciated. > > Thanks >