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 D88D846033; Thu, 9 Jan 2025 16:31:32 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AD21B40E72; Thu, 9 Jan 2025 16:31:32 +0100 (CET) Received: from frasgout.his.huawei.com (frasgout.his.huawei.com [185.176.79.56]) by mails.dpdk.org (Postfix) with ESMTP id 655BB40E4C for ; Thu, 9 Jan 2025 16:31:31 +0100 (CET) Received: from mail.maildlp.com (unknown [172.18.186.216]) by frasgout.his.huawei.com (SkyGuard) with ESMTP id 4YTTCv3MC6z6JBBn; Thu, 9 Jan 2025 23:26:51 +0800 (CST) Received: from frapeml100005.china.huawei.com (unknown [7.182.85.132]) by mail.maildlp.com (Postfix) with ESMTPS id 02ABE1400CA; Thu, 9 Jan 2025 23:31:30 +0800 (CST) Received: from frapeml500007.china.huawei.com (7.182.85.172) by frapeml100005.china.huawei.com (7.182.85.132) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Thu, 9 Jan 2025 16:31:29 +0100 Received: from frapeml500007.china.huawei.com ([7.182.85.172]) by frapeml500007.china.huawei.com ([7.182.85.172]) with mapi id 15.01.2507.039; Thu, 9 Jan 2025 16:31:29 +0100 From: Konstantin Ananyev To: Andre Muezerie , Konstantin Ananyev , Vladimir Medvedkin CC: "dev@dpdk.org" Subject: RE: [PATCH 1/2] lib/ipsec: compile ipsec on Windows Thread-Topic: [PATCH 1/2] lib/ipsec: compile ipsec on Windows Thread-Index: AQHbYFqL4dVqHwTJkk6cxyHKgfsDErMOlT+Q Date: Thu, 9 Jan 2025 15:31:29 +0000 Message-ID: <25af54ca11874b54ba61cfc139f9c73c@huawei.com> References: <1736181948-8907-1-git-send-email-andremue@linux.microsoft.com> <1736181948-8907-2-git-send-email-andremue@linux.microsoft.com> In-Reply-To: <1736181948-8907-2-git-send-email-andremue@linux.microsoft.com> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.195.33.80] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 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 > Removed VLA for compatibility with MSVC (which does not support VLAs). > Used alloca when a constant fixed length that can be used instead is > not known. >=20 > Implementation for rte_ipsec_pkt_crypto_group and > rte_ipsec_ses_from_crypto was moved to new file > lib\ipsec\ipsec_group.c because these functions get exported in a > shared library (lib\ipsec\version.map). >=20 > Implementation for rte_ipsec_pkt_crypto_prepare and > rte_ipsec_pkt_process was moved to new file lib\ipsec\ipsec.c because > these functions get exported in a shared library > (lib\ipsec\version.map). Hmm... not sure I understood the rationale. To me making inline functions not-inline first of all means ABI/API breakag= e, plus it most likely will make things slower.