From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua0-f180.google.com (mail-ua0-f180.google.com [209.85.217.180]) by dpdk.org (Postfix) with ESMTP id B149C2BC5 for ; Wed, 7 Dec 2016 10:44:36 +0100 (CET) Received: by mail-ua0-f180.google.com with SMTP id 12so409835352uas.2 for ; Wed, 07 Dec 2016 01:44:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=Pd2M20mkVIwgdQzPOOQWFA+dVQVSvM0cWHekYuN5c2Q=; b=fKZ6I+i7niTl+1sP8h9NbeD5+PHXkyXH53HZGUu5GpU8s/c7HoFj7nDp2n9gaGIN2b NHnvk8CrsRgpMpKHYukBB3N1Dz62XJ/cqUE3TjoVR5dix//Sv5N+HtggGlZX6yolCYPW wuL5/ZyUgTI+1o1gQnsf6fSt8do+6v2BuL/WlfMoLPt0p8gzHYqT5SzVjiaL19MnuFil hav2y24opZrXtufvrNvc9lzadBSjwUrz6eVbs24uw53dYhBKyo3vje5ZWAHgM6IU66By KW23D6IEjDAURYkjKE4CTdaUUDWC/c8k1AqCbIVchR+unkITSpQQ6BnahZLMjt9nY0QR dMkg== 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=Pd2M20mkVIwgdQzPOOQWFA+dVQVSvM0cWHekYuN5c2Q=; b=lOZeOiovbmy9LbnnbPa/DK1wnUE5jpg0HdQAHm6Len9Q1l8Lky6MgFoRNc//0OvYNg FJMoR6eCbm0P05AA4ODLKuJB7myWKZHRUkEPtGL13X2qkybe8YydsKn79Gxe86THOcks VX/thJg6kzUx3C35f9L23mMq6vD+nHp+nZSQAZ+JY9nAN11IatzDwV+DPzWhGGqoyZd8 8ZsXeRLIgr+j2pSYldGMSlfMzczOyV+c7N1OvPJmyKcUwsI3+DSYwOuR2HXhSLpdyL3p 5wrN1PMuhOIstXn6hBMUtK4A9kcmibW0Ip9SPKe2va2msLUSCFfnCkS2iTQBww+C4CUX 1iTQ== X-Gm-Message-State: AKaTC03ua9Qg1mtVA9mxeAh/vbTFo2VrcBXiZBmDwTF7TRnP4fCAY+ya46q8CU3f+KgMu9fCPraA266/S2pH2A== X-Received: by 10.176.64.3 with SMTP id h3mr50188936uad.176.1481103875796; Wed, 07 Dec 2016 01:44:35 -0800 (PST) MIME-Version: 1.0 Received: by 10.103.149.212 with HTTP; Wed, 7 Dec 2016 01:44:35 -0800 (PST) From: =?UTF-8?B?7Zmp6rec66+8?= Date: Wed, 7 Dec 2016 18:44:35 +0900 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] rte_rxmbuf_alloc() fails 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: Wed, 07 Dec 2016 09:44:36 -0000 Hi, When I run my application DPDK doesn't receive any packets after about 3 minutes. So I figured out why rte_rx_burst() returned 0 and the reason is rte_rxmbuf_alloc() failure. rte_rxmbuf_alloc() == NULL. I printed some statistics and it showed that the prod's head and cons' head are same. What does this mean? And rte_mempool_empty and rte_mempool_full always failed. Thanks.