From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk0-f178.google.com (mail-qk0-f178.google.com [209.85.220.178]) by dpdk.org (Postfix) with ESMTP id CDA032BAE for ; Tue, 11 Apr 2017 12:10:47 +0200 (CEST) Received: by mail-qk0-f178.google.com with SMTP id h67so135464817qke.0 for ; Tue, 11 Apr 2017 03:10:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=atomicrules-com.20150623.gappssmtp.com; s=20150623; h=mime-version:subject:from:in-reply-to:date:cc:message-id:references :to; bh=q2uVRcn2xaxmyD2DWIqqKGNxWQL/LW7vm88moE7lpek=; b=U2JNpg59WA4zP6w7AKadl1PINHtQ6pCS2AggAnUW+O4wtL7t1HH/F94nVZGVUHNNn9 my8u5hX88SSK8+5XzXU2LuxHsLjjiwI0/1+NfsZiT0ZhONUB+rKowWz+g7ZIEvZLkHtJ PhiTtXE6/eLHvA0YzxfH1PbA7TvLKkMwF4Ioc2NY+ZXXffcRUNkcaXfDhJiPSIH6KXE5 Scn6K3eoWujXbXQUu8BbpMkrsFhGrqaFQiy4Dv5leMcNg8fdKmIhJ6D1SVzc7Ki9aOiu k5eIVWl3thh6S+JgHQazVGX7/77DXqPKZyNSKZccfkoJLaEoXwwAhCZS98PGTA9swEhn fEvw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:subject:from:in-reply-to:date:cc :message-id:references:to; bh=q2uVRcn2xaxmyD2DWIqqKGNxWQL/LW7vm88moE7lpek=; b=kuDTrfio7qBaXdgo/toHHvuUWm/dVhU7M0fH1s5YZR5vH0k+cX4at5cHIdX3KhH334 yNDtD1O4HKV2I/tUTtoRQyPFQSPCEv2WL+43rLcQ+kNbiZBsBlFCAbxtH1EDf/AhQo5M NlD+19iitmVkDjgJ6GasgujmvcWh4wgTWUww4AiCMZi04x8lIKgnDujclmrgSxcVfbfe q5h/sumk0fL0ZaODxdWBSV95BNQkBRs3lIH+qfhTb5NvsrCxnl5y3J6p2lIZGsph3mFb FcTImKXuqgiuvBB3X0yQ/s5juaTjocJsixX4FyzcnKYzbRaKEnMFlfuw1iSkGT86g5qP UFTA== X-Gm-Message-State: AFeK/H29aKg2fQDsns9IWPka6W4DrPXvOm7nzweCIvUWVcEgWDNEKyXK+cT3sWoFg0KCCw== X-Received: by 10.233.221.2 with SMTP id r2mr57893268qkf.159.1491905447106; Tue, 11 Apr 2017 03:10:47 -0700 (PDT) Received: from [192.168.0.17] (h69-128-199-33.cntcnh.broadband.dynamic.tds.net. [69.128.199.33]) by smtp.gmail.com with ESMTPSA id v13sm6413258qtc.18.2017.04.11.03.10.46 (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 11 Apr 2017 03:10:46 -0700 (PDT) Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) From: john miller In-Reply-To: <1491827199-4853-1-git-send-email-ed.czeck@atomicrules.com> Date: Tue, 11 Apr 2017 06:10:45 -0400 Cc: dev@dpdk.org, Shepard Siegel Message-Id: <177765EB-AC86-428C-8AC9-BA1AF4CC3E04@atomicrules.com> References: <1491827199-4853-1-git-send-email-ed.czeck@atomicrules.com> To: Ed Czeck X-Mailer: Apple Mail (2.2104) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH 1/2] net/ark: update packet Rx path to set mbuf time stamp field 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: Tue, 11 Apr 2017 10:10:48 -0000 > On Apr 10, 2017, at 8:26 AM, Ed Czeck = wrote: >=20 > Time stamp was carried in the packet meta data, but not > place in the mbuf. The new time stamp field is the proper > destination. >=20 > Remove the setting of data offset since this is done by > rte_pktmbuf_free() >=20 > Signed-off-by: Ed Czeck Acked-by: John Miller >