From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8D53AA04B5; Thu, 10 Sep 2020 18:46:09 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BAC3F1C0B9; Thu, 10 Sep 2020 18:46:08 +0200 (CEST) Received: from mail-pl1-f196.google.com (mail-pl1-f196.google.com [209.85.214.196]) by dpdk.org (Postfix) with ESMTP id D5C911BFA2 for ; Thu, 10 Sep 2020 18:46:07 +0200 (CEST) Received: by mail-pl1-f196.google.com with SMTP id bh1so1201501plb.12 for ; Thu, 10 Sep 2020 09:46:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=yLM6F0Q7u8ru0IdQW6vfDIsEjZoDQLfNr7VFNx15D0c=; b=HNtTtuhVtI1CLHH0xyGWCLhrbF689AqZ3gvjLpKtcsEWhHaR7tl++nqlnpdPtbiAlZ Xnpmu9WPscHD4SSTPSjGFSzfYHrw1eqGyOU7NswdZkhrQxTS2rnv4Jv24w8NmSHCiYtF dbLbQVhvVFUOcqpSNGt/WErA9Fbpq2U6+JM2dV9yVeDK91dhINEpnf7awdjUk+0NsPBb XvfER8Snk7SuhM69w3611JyTfcmv13dYpOxeS8+rLBlBdytYXzjtcmR97iSMsZLbFjhu mvus0HFOIUBq6Xnfu63aqWk9SNH6TXYqwrLtboA5rjR+BXhbNEB/94vwC6LP5jL82aG0 LVZQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=yLM6F0Q7u8ru0IdQW6vfDIsEjZoDQLfNr7VFNx15D0c=; b=GkmSecrel7f3qvxGlCUGwsCiuvMr/aJmr/aNHzNjXAVz3TsSArHdgAv2gZ23aIW29+ IPRQgfMNBgNrry2t90tRocLMrRXbmZCVXLDa2WIN+RzkGhQyHefrqyMg62eevP1Vt6D/ I5r59QFfj5KBOZvpU4Bh6R7VBCyH9dFhrDZowrtU1AzHssVSaDBwOU2Idw2ox1reBTon BjSnOhHHE6BPf7BA4cPGybiB93FwkHvPzeHrRG7Fu504PtZ5eN4JlGfS2BwM/Po4Lw61 bATmaCTaRWN8Ir6ElFdRUCOsxaYutBQ4YWz2wcr3+X+Gt3/SfrJ/VOta9lw4qJmRLygl +7mg== X-Gm-Message-State: AOAM531lEYCZ+0TZ+UA6vvSX0M0kquLC/U4JRGedV4Hy6BIQGwsw8Mwt nUm6bMvKX9pVk0AZyF0D5e/W5Q== X-Google-Smtp-Source: ABdhPJxeQvDNAsbV+ooZlsw2zuXmPPNOhNdWM3XflyEDMhGKlnetYupzdG/GsW/W85eQ7Nvxwc/OOw== X-Received: by 2002:a17:902:b718:b029:d0:92cc:a449 with SMTP id d24-20020a170902b718b02900d092cca449mr6300080pls.9.1599756366947; Thu, 10 Sep 2020 09:46:06 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id kk17sm2338954pjb.31.2020.09.10.09.46.05 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 10 Sep 2020 09:46:06 -0700 (PDT) Date: Thu, 10 Sep 2020 09:45:58 -0700 From: Stephen Hemminger To: Tejasree Kondoj Cc: Akhil Goyal , Radu Nicolau , Declan Doherty , Ori Kam , Thomas Monjalon , Ferruh Yigit , Andrew Rybchenko , Jerin Jacob , Narayana Prasad , Anoob Joseph , Message-ID: <20200910094558.0398145b@hermes.lan> In-Reply-To: <20200910164441.7245-1-ktejasree@marvell.com> References: <20200910164441.7245-1-ktejasree@marvell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] ethdev: add security flow item 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Thu, 10 Sep 2020 22:14:41 +0530 Tejasree Kondoj wrote: > Introduce a new item type RTE_FLOW_ITEM_TYPE_SECURITY to > distinguish plain packets from IPsec decrypted plain packets. > > Signed-off-by: Tejasree Kondoj Please provide an implementation, API's without any driver support should not be accepted. Also, we need a test for this.