From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1A9F8A00C4; Sun, 13 Feb 2022 20:49:27 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0110240DDA; Sun, 13 Feb 2022 20:49:26 +0100 (CET) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by mails.dpdk.org (Postfix) with ESMTP id 18D364068C for ; Sun, 13 Feb 2022 20:49:26 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id ADC695C0172; Sun, 13 Feb 2022 14:49:24 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Sun, 13 Feb 2022 14:49:24 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:cc:content-transfer-encoding:content-type:date:date:from:from :in-reply-to:in-reply-to:message-id:mime-version:references :reply-to:sender:subject:subject:to:to; s=fm3; bh=aQ7sBY6oeSbI3E pGtXUpjtpgZpS4VY4OilhxbeAKyhI=; b=DhXy4jpMwMzpWqGKW06tL2/aa1n86q 9F4xM9FoBOGoVQ9BF7CIcJY6WxsrwLxM40Ckc2V+7JCAwaOOkPmLb9Pd6suXGrd+ gVApBGbI+gfhJoru/t+SHOKcuwBS9fBFkXejjX3C1+U+7Kat7DIvu10TgoKS3sMk WaJBFJA2yJSJ3ufC0wU+M1Ln27A0tPeTMkVAVUBC8yY1YJft5UaCUW8ePO/n8Ozq xO1Q8P30utGTy19pEjUx5jJYj6nWmEwJJtqflSOFK8p90wyAJdYfqfzemIxxFyJ9 +yqBflurtY2KEa4/RE4PUIjy4Gih0aPrf54rLek2kvM291B8Eea7Zc3Q== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding :content-type:date:date:from:from:in-reply-to:in-reply-to :message-id:mime-version:references:reply-to:sender:subject :subject:to:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=aQ7sBY6oeSbI3EpGtXUpjtpgZpS4VY4OilhxbeAKy hI=; b=JQSiJmn+0QU9yuVHuhV0cAOqBNjb81r77AF+KuECw3J+TisQPO8ty79DZ UE5P8Z8Rq4GZ/9szq4E6hWb7YCJfO/djD6ocWAslqKv5T17GkKu+hN6tZGD6g/5w 01ZMqvMyEHhuu6vR007nYHbOMgH29/2QjfFbHHhQ2AGX6K7UFqReBQlKyAAW2E4f IaA5YWIkJ1psxEPDAzB2Iw85+TQFNTADengxSb5WOkFbdH0cvzEtAXpIgRTmVSNR cCzSn4L4qE9CD2BhrlKBsjLHzpAbpRulI7SZLg8toLHifOmZ5jl5bxhhapbVC8ys ASWE0WSImjjUio2o1/XBq9xFPc1rA== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrjedtgdduvdehucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkfgjfhgggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgr shcuofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecugg ftrfgrthhtvghrnhepudeggfdvfeduffdtfeeglefghfeukefgfffhueejtdetuedtjeeu ieeivdffgeehnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilhhfrh homhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvth X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sun, 13 Feb 2022 14:49:23 -0500 (EST) From: Thomas Monjalon To: Harshad Narayane , Cristian Dumitrescu Cc: dev@dpdk.org Subject: Re: [PATCH] pipeline: add check against loops Date: Sun, 13 Feb 2022 20:49:21 +0100 Message-ID: <13708566.lVVuGzaMjS@thomas> In-Reply-To: <20211201122119.77423-1-cristian.dumitrescu@intel.com> References: <20211201122119.77423-1-cristian.dumitrescu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org 01/12/2021 13:21, Cristian Dumitrescu: > Detect when a jump instruction, either conditional or unconditional, > is jumping to itself, thus creating a loop, which is not allowed in > data plane code. > > Signed-off-by: Cristian Dumitrescu > Signed-off-by: Harshad Narayane Applied, thanks.