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 C575B462A9; Mon, 24 Feb 2025 11:35:38 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9844B40ECF; Mon, 24 Feb 2025 11:35:38 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id A52FC40E30; Mon, 24 Feb 2025 11:35:36 +0100 (CET) Received: from pps.filterd (m0431383.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 51O9adJQ017495; Mon, 24 Feb 2025 02:35:36 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to; s=pfpt0220; bh=D uOus+kblO3E0kLXqz2O6ZZ/hYF/aOY2AkpaUXU0yco=; b=OMv441meyHxBd0HMb 5IACZZ9QiId4PMa74ionGk5/ZUT0UpOHBdJ+Q3EUjlEkYQ+P/aUQAMVIb2qpUXlQ Wpdol20FxFvJ7W3AhCu9052wJVeyAMy9EfO8QaR/vn2xouUyg3Uv2etsOlvY9/01 11jurRiZ9q8p7xKrGqvsFlj518DX5GlChzwvgiZj3aAa6GntzkJ4rekNfe6Bp3OO QdxD0br4rvsXvftgSjWePdlkwOtaWDZmq/khOtsL+cjCiAh7rpPr6K43kG0hXUA6 HuWrfnTF6c7DiCusHhn/N/mhbckZ7fwOQ/AbZWVNS2Q5X5JSEDgOW1uhrG0V6oCh sFPvQ== Received: from dc5-exch05.marvell.com ([199.233.59.128]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 450p9304cs-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Mon, 24 Feb 2025 02:35:35 -0800 (PST) Received: from DC5-EXCH05.marvell.com (10.69.176.209) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Mon, 24 Feb 2025 02:35:34 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Mon, 24 Feb 2025 02:35:34 -0800 Received: from IN-lckQE5Rwctls.marvell.com (IN-lckQE5Rwctls.marvell.com [10.28.21.204]) by maili.marvell.com (Postfix) with ESMTP id C51033F705D; Mon, 24 Feb 2025 02:35:31 -0800 (PST) From: Gowrishankar Muthukrishnan To: , , Chenbo Xia , Fan Zhang , Jay Zhou CC: , Akhil Goyal , "Gowrishankar Muthukrishnan" , Subject: [v5 3/5] examples/vhost_crypto: fix user callbacks Date: Mon, 24 Feb 2025 16:05:05 +0530 Message-ID: <3b5029c1e5ffecb0d56c48e77474a1ccae8569c7.1740390893.git.gmuthukrishn@marvell.com> X-Mailer: git-send-email 2.37.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: VkcGcrP2e2dBB2BeU1K0B8fIH4y_zeJ4 X-Proofpoint-GUID: VkcGcrP2e2dBB2BeU1K0B8fIH4y_zeJ4 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.1057,Hydra:6.0.680,FMLib:17.12.68.34 definitions=2025-02-24_04,2025-02-24_01,2024-11-22_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 In order to handle new vhost user connection, use new_connection and destroy_connection callbacks. Fixes: f5188211c721 ("examples/vhost_crypto: add sample application") Cc: stable@dpdk.org Signed-off-by: Gowrishankar Muthukrishnan Acked-by: Akhil Goyal --- examples/vhost_crypto/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/vhost_crypto/main.c b/examples/vhost_crypto/main.c index 558c09a60f..b1fe4120b9 100644 --- a/examples/vhost_crypto/main.c +++ b/examples/vhost_crypto/main.c @@ -362,8 +362,8 @@ destroy_device(int vid) } static const struct rte_vhost_device_ops virtio_crypto_device_ops = { - .new_device = new_device, - .destroy_device = destroy_device, + .new_connection = new_device, + .destroy_connection = destroy_device, }; static int -- 2.25.1