From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f41.google.com (mail-wm0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id 05964292D for ; Fri, 11 Mar 2016 02:17:14 +0100 (CET) Received: by mail-wm0-f41.google.com with SMTP id p65so9328793wmp.0 for ; Thu, 10 Mar 2016 17:17:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=7sEVc7CrkcWa/Kf96Q49lPHM8GRfjNb5J4E7RvSiKg0=; b=G7ShcpAbxtybhgUHa8P3gCgitwX6Eo0M6J5UmBZOlVpWjIG/eSmpGX67Ej2j8t70kd CJOE8GsrFdAQcF9+J3d3f5ybU2gEiGaIitmG3T37IrQ8CDMSNS4oOHzAmhwqpRgu95+1 yacLHrKBLHxd3ib6AYy2rWVCsfhIHV6zfZO31niiRyswaGQiRqzo80wWcZy8P/A7se+R XCblKIG8Lm2c0HuoMP88ghtFqMsSNg1Apth+ZwQrls1KctJNEczDphJ2hwcb6Ec6OJ2R WcoVwnQdX67sAtPIrQ1Zsfx3tmjO/K1FAY3OIHHi17LAbznXlqj0ef89Mfl+X+386K9o 0MCQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding; bh=7sEVc7CrkcWa/Kf96Q49lPHM8GRfjNb5J4E7RvSiKg0=; b=Q3etgGA/86jJkDAiW4suo4c4jhpaN7Bip/ZBbeust/EEr0m57SEfTdqZPEPyJcKnzh Qzm8Mv1YGgXJ5fjKAqUxSUsucciT9Vd3j/8q9CDMFN9ITG5e/8RhP0H0gQdjo4cfLIvP 7BBUCxiee5whBVTyHeY/qO5ldNRw28O+OZwyruz3JF5Rlt1QhBqDINd4uusqeJ50hEPl oZNW+WM6EB+MSBGMwZIhUHdmb0n/P52JxjUnRoVhf7m6vm+ihve2papr7uSprfK78v4x 3GZ6d29Ch/gCSFL86BK5CrxMDoc2MgTYu6NPp2SdgrBopLPscqkoGt17fpvHLFvNjLnX jVLw== X-Gm-Message-State: AD7BkJKIRH9hst44bxHS2fgeuOY6fkGEPfjWh88TXyKdU+ADHvtdp63eIP08Wbt0Gcx0aLd1 X-Received: by 10.194.114.166 with SMTP id jh6mr6880253wjb.39.1457659033879; Thu, 10 Mar 2016 17:17:13 -0800 (PST) Received: from xps13.localnet (91.111.75.86.rev.sfr.net. [86.75.111.91]) by smtp.gmail.com with ESMTPSA id 73sm171008wmy.22.2016.03.10.17.17.12 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Mar 2016 17:17:13 -0800 (PST) From: Thomas Monjalon To: Pablo de Lara Date: Fri, 11 Mar 2016 02:15:31 +0100 Message-ID: <4133523.tsRHzmSpqY@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1457658250-156878-1-git-send-email-pablo.de.lara.guarch@intel.com> References: <1457657424-155354-1-git-send-email-pablo.de.lara.guarch@intel.com> <1457658250-156878-1-git-send-email-pablo.de.lara.guarch@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v5] null_crypto_pmd: PMD to support null crypto operations 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: Fri, 11 Mar 2016 01:17:14 -0000 2016-03-11 01:04, Pablo de Lara: > From: Declan Doherty > > This patch provides the implementation of a NULL crypto PMD, which supports > NULL cipher and NULL authentication operations, which can be chained together > as follows: > > - Authentication Only > - Cipher Only > - Authentication then Cipher > - Cipher then Authentication > > As this is a NULL operation device the crypto operations which are submitted for > processing are not actually modified and are stored in a queue pairs processed > packets ring ready for collection when rte_cryptodev_burst_dequeue() is called. > > The patch also contains the related unit tests function to test the PMDs > supported operations. > > Signed-off-by: Declan Doherty > Acked-by: Deepak Kumar JAIN Applied with a small doc indent fix, thanks