From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f181.google.com (mail-we0-f181.google.com [74.125.82.181]) by dpdk.org (Postfix) with ESMTP id 90D2068F3 for ; Wed, 16 Jul 2014 14:18:09 +0200 (CEST) Received: by mail-we0-f181.google.com with SMTP id q59so836669wes.40 for ; Wed, 16 Jul 2014 05:19:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=vy/QOp+8rV4TQr9582rqbpKrRKbKw2Bna1brIuZNg7s=; b=cZRGa92wpLmwF+mOjUTzPzjYDoGL1GhelZIFi1kKqeNutdlJ28Xu3TuYooLKd2Umnd OqyqS05Mjshc467leMhdy7DTxtFFL+v7NivgKq3MqzBKvZJG1hK8asM+uCffgEyHd0fE PJQa//l+BqLaHXjc+dDbdcvzK82jLtUAdDkFYH8BdKXF46HW/HaTirKmu4Hm4fUYLmv7 uWBsI9CRyG8UHdfiIfow+0JJu6qjyREVOQDRLDYXdyaE2FU40Va/54u8CYUu2zkOK0KT GoXbUsbyiRhY7WB+ODLJDfzFOR4CnHAopngHYBtVqgO9SyPCeRI10DVZLVw70bplqFPO Cb3w== X-Gm-Message-State: ALoCoQmpFBgOcTATOpLC2ZX5LchDz70Td9Hi9UeR/rgoyI6Ri5DuL6m5OrQrgxVqkRYdeAlWgUR4 X-Received: by 10.180.182.131 with SMTP id ee3mr12844752wic.37.1405513140703; Wed, 16 Jul 2014 05:19:00 -0700 (PDT) Received: from [10.16.0.195] (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by mx.google.com with ESMTPSA id dn3sm55902028wib.12.2014.07.16.05.18.58 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 16 Jul 2014 05:18:59 -0700 (PDT) Message-ID: <53C66DB2.4040605@6wind.com> Date: Wed, 16 Jul 2014 14:18:58 +0200 From: Olivier MATZ User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Icedove/24.5.0 MIME-Version: 1.0 To: Thomas Monjalon , Helmut Sim References: <1912860.PvCxTjHaVZ@xps13> In-Reply-To: <1912860.PvCxTjHaVZ@xps13> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org Subject: Re: [dpdk-dev] phantom old packets received in new mbuf X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jul 2014 12:18:09 -0000 Hello Helmut, 2014-07-16 13:56, Helmut Sim: >> then i see that from time to time i get a packet that was already received >> earlier instead of receiving the expected packet. >> the output is: >> PKT 12201 >> PKT 12202 >> PKT 12203 >> PKT 12204 >> PKT 12205 >> PKT 12206 >> PKT 12202 >> PKT 12208 >> >> total received pkts is identical to the total delivered pkts, but part of >> the pkts are being received twice... Enabling CONFIG_RTE_LIBRTE_MEMPOOL_DEBUG and CONFIG_RTE_LIBRTE_MBUF_DEBUG could help you to track double free or corruptions. Regards, Olivier