From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it0-f47.google.com (mail-it0-f47.google.com [209.85.214.47]) by dpdk.org (Postfix) with ESMTP id 70AF89E7 for ; Wed, 9 Nov 2016 15:40:56 +0100 (CET) Received: by mail-it0-f47.google.com with SMTP id e187so208025394itc.0 for ; Wed, 09 Nov 2016 06:40:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lightcyber-com.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=yh4SdIYWA88EbYEieHGo04xjlJNP0vdaDPq6lzSGl2c=; b=fxZngUO82jcNgEjXk8vCijJgnbQvo3Auu5+UqJA6PfNbTsuZYYlJJqKtXDnCN5Apuj YrPrWCGCxW1BjZKFZGmanG86LR3M0B4HRu68NGKEFfXpd9qH8UXanh9ts2a4MVnIIdgd wGXES22m2FL974c43cauCCpXVZS62AfOS4mwCcG10hkpEWW8l0McAcSmxb9cEXDfRfNT igoJMmQILzEpqJLqieD+xInThVwFbH2Lm4dgOuUXzN0TuJDRcWyau7ldUr1ikm1KCyZa 54qNME2cY6QS4m8Da8QrpoUJ5MmXA8B5pHvd1tZyi1POquAK7E4pSmB6SiUdxrC6xzNZ owmA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=yh4SdIYWA88EbYEieHGo04xjlJNP0vdaDPq6lzSGl2c=; b=PHRtSCdYn476DaC0pvc/98n32A0+k8ogIwhJLVbtUSfJ/6+oxDc7JAz0i24bYMmQPm srWUur6VoudXgvrH55aEJDkZTOUpPjVC7YuG3V6CNvz/iCLB+5XjUq0x3M8MdhubUitr KIekocyQ2mwzrmU3Mk5/IEjxyHEnfEDv4a54P/lW69KzO7wiDQMZbBR4/2ZVwyjslBuw iDjxCrCAXV3srXTldlS1XJQIxMee8+A0uzh+M/xpYBqc8P7agDvKUntoXARCzR5ZKxsS V2BHQwjmNSgCSArwHq9WfyiaQAmRe8gxZegwv70q4HSxUv4bsFL+vveiFtz+T0q+v/Zs mpWw== X-Gm-Message-State: ABUngvf2jtyAsa09VoUDApUR00kqyOTHEbuOYgnNf6cHA6h1dQThz976GtffIwXSEj8SB6lPn/EB2/SXsWMwsA== X-Received: by 10.107.132.74 with SMTP id g71mr590905iod.19.1478702453470; Wed, 09 Nov 2016 06:40:53 -0800 (PST) MIME-Version: 1.0 Received: by 10.36.110.197 with HTTP; Wed, 9 Nov 2016 06:40:52 -0800 (PST) In-Reply-To: References: From: Keren Hochman Date: Wed, 9 Nov 2016 16:40:52 +0200 Message-ID: To: Christian Ehrhardt Cc: dev Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] disable hugepages X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 14:40:56 -0000 I need this option only for testing. How can I use rte_mempool_create if I use --no-huge? Thank you, Keren On Wed, Nov 9, 2016 at 3:40 PM, Christian Ehrhardt < christian.ehrhardt@canonical.com> wrote: > > On Wed, Nov 9, 2016 at 1:55 PM, Keren Hochman < > keren.hochman@lightcyber.com> wrote: > >> how can I create mempool without hugepages?My application is running on a >> pcap file so no huge pages is needed ? >> > > Not sure if that is what you really want (Debug use only), but in general > no-huge is available as EAL arg > > From http://pktgen.readthedocs.io/en/latest/usage_eal.html : > > EAL options for DEBUG use only: > --no-huge : Use malloc instead of hugetlbfs > > > >