From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f46.google.com (mail-oi0-f46.google.com [209.85.218.46]) by dpdk.org (Postfix) with ESMTP id 9C14811C5 for ; Mon, 16 Jan 2017 13:20:24 +0100 (CET) Received: by mail-oi0-f46.google.com with SMTP id m124so62746643oif.1 for ; Mon, 16 Jan 2017 04:20:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=imvisiontech-com.20150623.gappssmtp.com; s=20150623; h=mime-version:from:date:message-id:subject:to; bh=hgP/HTT7RhUEQ15/OLAMJNACi0MbNNwf3og0aB1K9ds=; b=fYZZU6WljsjLPrKpH2pu+9bvuxCMdgTozm4R1xySXRjZULA+kAfGxfmMaW/+Y+uQ4A FKJmPS02mpQgzu7EkZ1UwRKNapKKEgbF1iwBxQGbeucB/UeB313hkkpI1BeOcg8BAEC3 7bU4xmUTaLjq8JDA/8peEBm5DBoHX0k2q+krArPIhVnUvwfsGN3pqAex6r7VqqKnW8Js KbqPhivAlcgSuJfCOj9Y3MHT/Y7ylvqmmjgHoDBxCL1+Px6vSW5FKUGHkIsQ/MIqEjXR L3SANwFqop/jhjbp6+s4FOzNLegOP6hT4f8I1UVVNl/C5W7JoEMBk9pAIukiLtVJTPOw 1mcQ== 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=hgP/HTT7RhUEQ15/OLAMJNACi0MbNNwf3og0aB1K9ds=; b=P5ZT4ai7o3U5u0YTlRAEeEUnQTo7eL3SeAANtpvZYM8eOZXxdpKCSz6SgI4Ramk79e R1ODTgj5gXNvECzS8LLD5AsXeGErXXSmvBx+1H2PC2srfPe7tdAO6kXB8nb0CDk2q/hr mkzgvqy3dTtAjfUbL6ZuxiojxeoJ6guZmsgwvccGFk1ZwrloeZle0Puhm5yHbXB+Dm0g ZQm9NhxBDGf3yyhb1AMU5MFoccEZdyaKs/y9fLndsgp2cjuC53DY9W1+GstFvkc6Hq7I XEhA4MU4jZn9oou1I+eg4PHYe2hw++tUpakzGYpLmx4uwR312IP3DqyLxFQJ2xKq/bbI fWgA== X-Gm-Message-State: AIkVDXJ09FxeMTDrXcMD4B94gsYbVnxE+0XOx2a6c5PxHOz0OuWUkZYzKJPvOqdhnu8xvvuWQfdbhDmzaJxKwA== X-Received: by 10.157.46.67 with SMTP id c3mr15316820otd.163.1484569223657; Mon, 16 Jan 2017 04:20:23 -0800 (PST) MIME-Version: 1.0 Received: by 10.182.50.70 with HTTP; Mon, 16 Jan 2017 04:20:23 -0800 (PST) From: Shirley Avishour Date: Mon, 16 Jan 2017 14:20:23 +0200 Message-ID: To: dev@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] drops while transmitting to the kni using rte_kni_tx_burst() X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 12:20:24 -0000 Hi, I have an application over dpdk which is consisted of the following threads each running on a separate core: 1) rx thread which listens on in a poll mode for traffic 2) 2 packet processing threads (for load balancing) 3) kni thread (which also runs on a separate core). the rx thread receives packets and clones them and transmit a copy to the kni and the other packet is sent to the packet processing unit (hashing over 2 threads). the receive traffic rate is 100Mbps. When working with single packet processing thread I am able to get all the 100Mbps towards the kni with no drops. but when I activate my application with 2 packet processing threads I start facing drops towards the kni. the way I see it the only difference now is that I have another threads which handles an mbuf and frees it once processing is completed. Can anyone assist with this case please? Thanks!