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 02B85A0A02; Mon, 5 Apr 2021 20:53:06 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 71C5B4068C; Mon, 5 Apr 2021 20:53:06 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 59CCA4014E for ; Mon, 5 Apr 2021 20:53:05 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 135Iar0G008491; Mon, 5 Apr 2021 11:53:04 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=Esr1oG8uMQ9gJqZRcOmD2ZMZPwXh9j5uKclss/rgaZc=; b=dQ8PqdNmHdKJaXYg8iD6W9THYXvGbsvgAMRy6ukrZ089GpdQS09zSzHZQxUxlc6/tqMu tzrbHr1Zoy8cJjW//bS6OjCS/ywdEgYvMfUoAOTefl0Q57Ii7AQxUnJw76fZycgZKsqC HaTIpR4BFogiHyWGUnoqu+PZ3DrZXnmGa077fNi0Qx+LRxwa/RuO4519gQz6sqvL0MlV 7v8JzStKhZuIUs9VyJkbMer6TNALjgNbBVMMlYxSwFpLIn/GVOItE7gmqaQ5CcCeBbi8 B7Bw1V6opZMCdXm/U4sF8Xt/mXt56XUlcaUwuhUNzvGWKuZ7fYZeMJtII4F1ZlaVrkXG Vw== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com with ESMTP id 37q2ms4820-3 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 05 Apr 2021 11:53:04 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Mon, 5 Apr 2021 11:53:02 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Mon, 5 Apr 2021 11:53:02 -0700 Received: from localhost.localdomain (unknown [10.28.36.185]) by maili.marvell.com (Postfix) with ESMTP id A79CE3F7040; Mon, 5 Apr 2021 11:53:00 -0700 (PDT) From: Akhil Goyal To: CC: , , , Date: Tue, 6 Apr 2021 00:22:57 +0530 Message-ID: <20210405185257.721468-1-gakhil@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210223061307.22765-1-hemant.agrawal@nxp.com> References: <20210223061307.22765-1-hemant.agrawal@nxp.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: OdFDHrAIWRT8PYyiKqEvqSCU5f7TFz3X X-Proofpoint-ORIG-GUID: OdFDHrAIWRT8PYyiKqEvqSCU5f7TFz3X X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.369, 18.0.761 definitions=2021-04-05_14:2021-04-01, 2021-04-05 signatures=0 Subject: [dpdk-dev] [PATCH] l2fwd-crypto: align private data size to cache size 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 Sender: "dev" L2fwd-crypto is passing 24b private data size while packet pool creation. This patch aligns that private data size to cache line size for better performance results. Signed-off-by: Gagandeep Singh --- app/proc-info/main.c | 2 +- examples/l2fwd-crypto/main.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) I believe proc-info change is added by mistake in this patch. Please fix this.