From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it0-f54.google.com (mail-it0-f54.google.com [209.85.214.54]) by dpdk.org (Postfix) with ESMTP id A04B82661 for ; Mon, 13 Aug 2018 05:35:43 +0200 (CEST) Received: by mail-it0-f54.google.com with SMTP id h23-v6so11535920ita.5 for ; Sun, 12 Aug 2018 20:35:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=w0XGmWgVRT5HZ3Vaz3KwXXjsT3IDubWKCPZjg5GTjXg=; b=AfIEb+gKWpEa76YwtUqcumzqob71OZNBxOWmGU6YDrPhFYULrTFlWQqMmfNbmRiHhO hwHYyxBDeK0VkDszUGxd71UJ6V3CGvjgZUC/OMkYXB1Xi/HGGNfYYC1M43Ywsfh9kwWO kshB9HytI/ONRzlbJdxdH0KD32yxR959v4F9g0HzF0fTAKggbB1hVq5Iv+FoLK0YfyIE Teg75jsSqHECuMJLlejPA/KL2Jy6/OWJQIX4mh4/F2nu+MbpjAZCS9ktJXFQKXRsujYM +UFJ7hvkGlbxnDI/3rw52Xmvn9YW8TqqzX/Yhx+bEonpozPiElTxA+SrvGKFm66itfAd wazw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=w0XGmWgVRT5HZ3Vaz3KwXXjsT3IDubWKCPZjg5GTjXg=; b=LbK5CHXGEOCX/NbUirnwO3x9jic3efM1OfTvAtI/MRrYO+LfGCzz67uCylz5Hin6XZ IbB1SyV9O9+fEknQatu+t+wiWkd/amCvW46hDiVnN3kCSRL75L+bZvrm0I52YIHs1jfr kucpWoy9UkwCGymJKh2uS4SdSOJhRQu1cxbP4vjBIbIHP9m9azoXd4MrApUXlMwqlpCH 2K4yhvg/cMBgsQxFG6VO0yoaa/D7tQ5kCkbnDWgZm3f+mOc5BWxSUDK7WtQhKb3zXaw2 5TUaUV+y4ravncMsNM9jtyPOT+UfWlnoPRDQ+e07Mhz8hjrIpq17C0Nvn5/vUejSjphM Kx8A== X-Gm-Message-State: AOUpUlHYyP/opqD4Vq4zMIf8Cci40akrFXUiFFv7eXFbjHBad3JJQoU7 d1zAvPJilB3NCF6yXsPzaIa2vwPdYrYyEDbrA/d0mw== X-Google-Smtp-Source: AA+uWPyRIkb1LOcg8+VA4b2qeYpl8GoJvnk4Ylf8rAn6h7lonmiBY9YsyUoaPf1XPSGdaTpdtL2+YITeBALKtmHxO+w= X-Received: by 2002:a24:40d2:: with SMTP id n201-v6mr10069929ita.144.1534131342552; Sun, 12 Aug 2018 20:35:42 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a02:2e54:0:0:0:0:0 with HTTP; Sun, 12 Aug 2018 20:35:41 -0700 (PDT) From: Sungho Hong Date: Sun, 12 Aug 2018 20:35:41 -0700 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] stalled after receiving 8000 rte_mbuf (4096 byte) 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: Mon, 13 Aug 2018 03:35:43 -0000 Hello I am developing a project with DPDK but have encountered a silly issue, that is not obvious to me. I am sending and receiving 4kb rte_mbuf between remote and local node, that alone works fine, however when I combine the implemenation with 3rd party library, the DPDK stops receiving the data after approximatelyr receiving 8000 packets. I have debugged all the possible program side and to my astonishement. there is no error found and all the packets that are within 8000 are received correctly. I have no idea the approach to find out the problem of this situation. but the situation that I have mentioned can be replicated. It always stops at approximately 8000 packets received. and there are absolutely no bugs found in dpdk (user interface). The only problem is the rte_rx_queue stops returning the packets after 8000 packets. Would there be a good approach to identify the problem of this case?