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 980AB45D3F; Tue, 19 Nov 2024 09:34:33 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 119EC40268; Tue, 19 Nov 2024 09:34:33 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id EB53E400D5 for ; Tue, 19 Nov 2024 09:34:31 +0100 (CET) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 4AJ16Egb012793; Tue, 19 Nov 2024 00:34:28 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:message-id :mime-version:subject:to; s=pfpt0220; bh=3ZfynmllTOMFR/OB3tt1KCA 4wcZaJEoqvJnnLg2Xb+Y=; b=S72/kTfG97kDD1+qh9aE2IWRnH9KIP6su3IKNgk rVMb6Jgv2zWeF9yR3ryGixViCz5HflDehPn+Xs7TkOlq19FCqOsHV7oTm3owkOMy djKfnHhLvym6iRruwlKSpUsQiNBu7xI8QXE0gvt1z0KQZZC9uSSL7tKQCi/nuG8f t+fz4PTxMiFHBD2yLmU6Lh3AMO49+C8Vf3BfpMojIAX0nldlL7651V6PUzfAzDGd VTcYTcqArqqo6zV4W3kMTLAO8UUx4AEsaKGyvq6Mfw9WfmGZNbT0ZezmV3Rq5Tsn IWRULMmUmL+3jMDGvJGS/7aVlEvnui0qx9hqXbq6P4w3z8A== Received: from dc6wp-exch02.marvell.com ([4.21.29.225]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 430gq7rnsq-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 19 Nov 2024 00:34:28 -0800 (PST) Received: from DC6WP-EXCH02.marvell.com (10.76.176.209) by DC6WP-EXCH02.marvell.com (10.76.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Tue, 19 Nov 2024 00:34:27 -0800 Received: from maili.marvell.com (10.69.176.80) by DC6WP-EXCH02.marvell.com (10.76.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Tue, 19 Nov 2024 00:34:27 -0800 Received: from IN-lckQE5Rwctls.marvell.com (IN-lckQE5Rwctls.marvell.com [10.28.163.68]) by maili.marvell.com (Postfix) with ESMTP id 0D76E3F707B; Tue, 19 Nov 2024 00:34:24 -0800 (PST) From: Gowrishankar Muthukrishnan To: , Maxime Coquelin , Chenbo Xia CC: Anoob Joseph , Akhil Goyal , Gowrishankar Muthukrishnan Subject: [PATCH v1] vhost: include AKCIPHER algorithms in crypto_config Date: Tue, 19 Nov 2024 14:04:10 +0530 Message-ID: <20241119083413.964-1-gmuthukrishn@marvell.com> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: fRskPBcnWOPZWVdfz-99XffXRmbyOoU4 X-Proofpoint-ORIG-GUID: fRskPBcnWOPZWVdfz-99XffXRmbyOoU4 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.1039,Hydra:6.0.680,FMLib:17.12.60.29 definitions=2024-09-06_09,2024-09-06_01,2024-09-02_01 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 Update virtio_crypto_config structure to include AKCIPHER algorithms, as per VirtIO standard. Signed-off-by: Gowrishankar Muthukrishnan Change-Id: I227bfa9b2bb840a92d50b21b538892927379f3f2 --- lib/vhost/virtio_crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vhost/virtio_crypto.h b/lib/vhost/virtio_crypto.h index e3b93573c8..28877a5da3 100644 --- a/lib/vhost/virtio_crypto.h +++ b/lib/vhost/virtio_crypto.h @@ -410,7 +410,7 @@ struct virtio_crypto_config { uint32_t max_cipher_key_len; /* Maximum length of authenticated key */ uint32_t max_auth_key_len; - uint32_t reserve; + uint32_t akcipher_algo; /* Maximum size of each crypto request's content */ uint64_t max_size; }; -- 2.37.1