From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 705F25681 for ; Thu, 1 Nov 2018 15:07:54 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 0FA5921E5F; Thu, 1 Nov 2018 10:07:54 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Thu, 01 Nov 2018 10:07:54 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=Ilb+60HYYVAo0lj1RjBcik0E80GgXEqS79R/uN+q8dU=; b=QGM9h/8K0bWc qrm8AZ/gXzhinCSXNpcGB18g/3GWkejXfarh6UipE7EbfuRC+HYz8jddhfjVqoh/ m9UybXWqxgxDMKq5Gr7MG6OSeTlYwmoKQCNZSKnUyz6rKNb70+Tikk9bPDbN1uvI FosQSbZ9Zvfmqwp7yMXe+CPxIG/X1eg= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=Ilb+60HYYVAo0lj1RjBcik0E80GgXEqS79R/uN+q8 dU=; b=WL58ks/yCmRrKzU85w+6Fn0lQjy/t1R+9fZ7bQMjMJrDQxzvgJ2SGLqoq U6SYr4Ouk5Mvo9S6NricwZxbgGZSCxAYr43hL9PLUoYVgGrkRrwX/AmThyK+duGX dc/Gbstb3uUJWY1vwCky+zXig3VRuT9OblAj6I7yQWJXethK91ND/sQLdaRNlzIj am14JRRx6YfhUlG2IhIf8vdYpgdKjoXtkmV1PonP/KwSNJSWZ8UJBBTWELstTMjL P1VyGr5Q/es51t6Uc7Lp80JhxdqU2NX92yitbuwHGIcf/TWSYVOYQVyI3DC/oLx8 ujeIkC5vfeUUKnujcb1tHiuyOzDGg== X-ME-Sender: X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id AE00CE43A6; Thu, 1 Nov 2018 10:07:51 -0400 (EDT) From: Thomas Monjalon To: Neil Horman Cc: Cody Doucette , "Ananyev, Konstantin" , dev@dpdk.org, Gaetan Rivet , Olivier Matz , "Dumitrescu, Cristian" , Michel Machado , "Fu, Qiaobin" Date: Thu, 01 Nov 2018 15:07:50 +0100 Message-ID: <9397707.3THrMnljP8@xps> In-Reply-To: <20181101135356.GA27151@hmswarspite.think-freely.org> References: <20180727135243.147744-1-doucette@bu.edu> <9016909.uyicx2EDCj@xps> <20181101135356.GA27151@hmswarspite.think-freely.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v3] ip_frag: extend rte_ipv6_frag_get_ipv6_fragment_header() 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: Thu, 01 Nov 2018 14:07:54 -0000 01/11/2018 14:53, Neil Horman: > On Wed, Oct 31, 2018 at 04:08:18PM +0100, Thomas Monjalon wrote: > > 31/10/2018 16:03, Neil Horman: > > > On Wed, Oct 31, 2018 at 10:20:46AM -0400, Cody Doucette wrote: > > > > Thanks for the suggestion. It looks like > > > > 49bcce138374458d1edd1c50d8e5726959108ef4 is already in my tree. I tried > > > > applying and checking again anyway and it seems that the error is still > > > > present. > > > > > > > Thats not a commit in the upstream tree, I've no idea what patch you are referring to > > > > Yes it is in the tree, in 18.11-rc1. > > > Got it now, thanks. > > So this actually looks to be a new bug, and I'm not sure how it got in there. > The awk match to close the in_map section isn't triggering on this patch set, > which is very odd, as Its been working. The match is ^(map) which should be ok > (allbeit perl regex syntax), which I thought awk supported. That said, it > certainly doesn't seem to be matching now. All these regex things are painful sometimes :) > I've got a patch posted to you which replaces this with a traditional character > class match [^map], and thats working with this patch set. OK, I'll check it, thanks.