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 A6CE143DAE; Tue, 2 Apr 2024 02:05:10 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 708B14025D; Tue, 2 Apr 2024 02:05:10 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 9D67740151 for ; Tue, 2 Apr 2024 02:05:08 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 9A2C720E6F67; Mon, 1 Apr 2024 17:05:07 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 9A2C720E6F67 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1712016307; bh=v81EbhyUNo6u3cqrfqogH5360+CxEPYZh0yIb4y14ag=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=UxtBcktR+vayiT26LKmPsTyUtX3aYmg5cJHvGBuQB6DkJz+MJhcxKe3U9+spsdLd7 Lp+1zcV1EjDUpInC7tHwK7Wi/ZeI+0B8skAHkbDuH3ZnKUDv0dXUldGdYYSO89gfb+ L3wKXFf7UR32MPyFNyuE61hd6LBjxptIJFu7DvCM= Date: Mon, 1 Apr 2024 17:05:07 -0700 From: Tyler Retzlaff To: Aditya Ambadipudi Cc: Stephen Hemminger , "dev@dpdk.org" , "jackmin@nvidia.com" , "matan@nvidia.com" , "viacheslavo@nvidia.com" , "konstantin.v.ananyev@yandex.ru" , "konstantin.ananyev@huawei.com" , "mb@smartsharesystems.com" , "hofors@lysator.liu.se" , Honnappa Nagarahalli , Dhruv Tripathi , Wathsala Wathawana Vithanage , nd Subject: Re: [PATCH v1 0/2] deque: add multithread unsafe deque library Message-ID: <20240402000507.GB1488@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230821060420.3509667-1-honnappa.nagarahalli@arm.com> <20240401013729.1466298-1-aditya.ambadipudi@arm.com> <20240401070503.737db4f5@hermes.local> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) 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 On Mon, Apr 01, 2024 at 10:28:52PM +0000, Aditya Ambadipudi wrote: > Thanks, Stephen, for the comment. > > Unfortunately, we don't have the dev setup nor the resources to test out this change using MSVC. what are the dependencies of this lib? you've provided an agnostic api and unit tests, you can enable it in the build and the CI will provide a minimum test bar. > > Thank you, > Aditya Ambadipudi > > > ________________________________ > From: Stephen Hemminger > Sent: Monday, April 1, 2024 9:05 AM > To: Aditya Ambadipudi > Cc: dev@dpdk.org ; jackmin@nvidia.com ; matan@nvidia.com ; viacheslavo@nvidia.com ; roretzla@linux.microsoft.com ; konstantin.v.ananyev@yandex.ru ; konstantin.ananyev@huawei.com ; mb@smartsharesystems.com ; hofors@lysator.liu.se ; Honnappa Nagarahalli ; Dhruv Tripathi ; Wathsala Wathawana Vithanage ; ganeshaditya1@gmail.com ; nd > Subject: Re: [PATCH v1 0/2] deque: add multithread unsafe deque library > > On Sun, 31 Mar 2024 20:37:27 -0500 > Aditya Ambadipudi wrote: > > > As previously discussed in the mailing list [1] we are sending out this > > patch that provides the implementation and unit test cases for the > > RTE_DEQUE library. This includes functions for creating a RTE_DEQUE > > object. Allocating memory to it. Deleting that object and free'ing the > > memory associated with it. Enqueue/Dequeue functions. Functions for > > zero-copy API. > > > > [1] https://mails.dpdk.org/archives/dev/2023-August/275003.html > > Does this build without errors with the Microsoft Visual C compiler? > > Want to make sure that all new code does not create more work for the > Windows maintainers.