From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf0-f43.google.com (mail-lf0-f43.google.com [209.85.215.43]) by dpdk.org (Postfix) with ESMTP id 67BC81C52 for ; Fri, 15 Apr 2016 10:34:03 +0200 (CEST) Received: by mail-lf0-f43.google.com with SMTP id g184so137181749lfb.3 for ; Fri, 15 Apr 2016 01:34:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to; bh=SQbr1IktkoDcwidJALMw/gjp16fINJYdRA1rzhQOwp0=; b=A9ETvYc0ALyH6a7psLrHYmPc0nI91azvONWMB/5MKOTqsIIpz++kL/NFBTaRE79KfK s6xJ6cp1xTe4xpp0MNo6m20MXM9ARTGImOQ8heWPkaVPIQMSFpMgAUD3xFfv4A3vjVSS cZ5TST8PdPDTSGjGzVkYZcr/9ivlc1Wet+3umw6Eq/iYH8sikPN7rZZ029fbPCYUDcQN VQTeC3sUUtNFrvJyDYGH2SqSL+9y456PS6x6u/iUCgN8uexTLeTbcaknG1E5bR7iF1V2 JpB/0jLZAw9EoebKW9KlGG4ky/e4A7lXY40i+Jh8V4L++FHSLamekyAOqdlQj5ZxymVz Yduw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to; bh=SQbr1IktkoDcwidJALMw/gjp16fINJYdRA1rzhQOwp0=; b=CHqlB2LV+dl1ykjAJs/Tyr7Pf+lZzZV32H5X6pxu0cMSwMRDGhC6vzGsI3pntgAAcE B97o3H173RrjaRSBCwmjWU5Y34XMipvSaGYuQoTD/ZiVlGwXo7XLF2/CYg6DIS52hBN4 6f9ACLPaNzgftduZHyPwV1Dd/j810fE3lyDk5unrs+3PwOjYaZwihbzBVUQ8vJzV5OfW v9w9OlY4IUNxkB01cOHzfnauKI0uxYltQdpU88QgANmmr2h/DTqdt7d7jsIl9iYew8E4 sFl4fQ64CYjxggGGBtJng93xJNAtxIrnBghCsFQ/OVveGmfRd+ng0LIZZhBVFFCJmlJz Cdkg== X-Gm-Message-State: AOPr4FXfuRskC1TpnVDLqReDdzhyFCusjjSqBcLonCeZqsyEeWSJCLtTp0aGa696djAyqfqZd43LrEXKH6ESFg== MIME-Version: 1.0 X-Received: by 10.112.25.100 with SMTP id b4mr8377771lbg.142.1460709243110; Fri, 15 Apr 2016 01:34:03 -0700 (PDT) Received: by 10.112.164.40 with HTTP; Fri, 15 Apr 2016 01:34:03 -0700 (PDT) Date: Fri, 15 Apr 2016 10:34:03 +0200 Message-ID: From: =?UTF-8?Q?Javier_Coleto_Fern=C3=A1ndez?= To: users@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] mbuf free cnt not decreasing 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: Fri, 15 Apr 2016 08:34:03 -0000 Hello, I've developed an application using DPDK to make forwarding and encapsulation/decapsulation between two end nodes. This application uses two eth interfaces and creates two KNI interfaces to forward the packets: - the encapsulated ones through the eth interfaces - the not encapsulated (standard packets) through the KNI interfaces The problem I'm facing is my mbuf free count (as given by rte_mempool_free_count()) keeps increasing and tops at ~8130. Being 8192 the size of the mempool, that stops the packet processing and my application stops forwarding. Any clues about what I could do to liberate the free mbufs back to the mempool? Regards, Javier