From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f44.google.com (mail-oi0-f44.google.com [209.85.218.44]) by dpdk.org (Postfix) with ESMTP id 6EA3C2946 for ; Thu, 15 Sep 2016 19:16:10 +0200 (CEST) Received: by mail-oi0-f44.google.com with SMTP id m11so79400116oif.1 for ; Thu, 15 Sep 2016 10:16:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thezims-net.20150623.gappssmtp.com; s=20150623; h=mime-version:from:date:message-id:subject:to; bh=8BQyY3uKsPQLFZGeL42vJrBHuZo7sFBiOhCTtlvrLms=; b=xHnJMuMoI2WSAnsbNY6ti10sME1pEGEikCVC6vxRiOPavpHhoXT9kDDdVTqjjxhcfN txqDU1+zuydGxmSyCz8qr2aa1aZNKcXMdVGqBviYZm1mJcYl9F0kKKmL+FR9H87yi07o 8StzWKTr+CqgE6bme4NlvN9aWNOQ4RYTZipjOr+Jdnd2jFHz8mz9rEDXRSeObFzN1pHu iiV7DCbvGWy0MaeNmxphHTNzAu3ymNXVJv2HlcSGjOT1aUrFN8sDaEyxqXEvERR6KuD+ nefbblXSRkdY4QQf1VfBUAQ2HbtDr9VEnFHvjD7k0Y3rBALrhOey+/KtSWc2/FCs9qLA Zd/w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=8BQyY3uKsPQLFZGeL42vJrBHuZo7sFBiOhCTtlvrLms=; b=PI80C30Ep6lYNKmSLYfVFuO9LtdicdQ8fT/7x7ktMRi0LOFvlPMOpK06Whh7GCwVae YASwSnoXYcNvfA0cDXTpX3xidQHFS6KOtIoJ0Vc8jMRNioJQC+XgTBl0qWrp22EK4rfj 7zOCvZJHfXbi5RY7VglYERq/+2EbT1rgGMZKo4NBEC++TLVLOceDVscfKZ6jO+G8XsVo 3rR+dN+htanKCxWOPxkzB0ySVkKX+YZNeCfQDrg+dWaip5kx0cakBNdWvMPBRMWLyzgW +S562UxjdUzhTiniOeiFPdAkX9yLWML1uqbV5iYp6UQw29LSHh5wvwv2Aw5dV/viVspK FnlA== X-Gm-Message-State: AE9vXwNU7Up3uFkCqmFPq5JWDfY+12++O5tx9qDN8sOmNg5vA0Hxq/APcAL8plNL2IYbYDFEMus4Iv7Y4/Zw6rDA X-Received: by 10.202.190.215 with SMTP id o206mr9019995oif.76.1473959769269; Thu, 15 Sep 2016 10:16:09 -0700 (PDT) MIME-Version: 1.0 Received: by 10.202.95.196 with HTTP; Thu, 15 Sep 2016 10:15:38 -0700 (PDT) From: Rob Zimmerman Date: Thu, 15 Sep 2016 13:15:38 -0400 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] Segfault in rte_ring_create X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 17:16:10 -0000 Howdy everyone! Has anyone experienced a segfault in rte_ring_create which looks like the following bt? Surely, this must be something with my environment and not my version of DPDK (16.07). (gdb) bt #0 ___vfprintf_chk (fp=0x0, flag=1, format=0x599b50 "RING: Cannot reserve memory for tailq\n", ap=0x7fff25c07990) at vfprintf_chk.c:29 #1 0x000000000046c9fc in rte_vlog () #2 0x0000000000424944 in rte_log () #3 0x00000000004606f0 in rte_ring_create () I checked my hugetables and everything looks like it should be OK (via dpdk-setup.sh) AnonHugePages: 8192 kB HugePages_Total: 512 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB The call is made like so: struct rte_ring *pRing = rte_ring_create("TEST RING", 64, SOCKET_ID_ANY, 0); As a side note, I actually hit this when trying to create a hash (rte_hash_create) which ends up calling this under the hood. Many thanks!