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 5CDBE46762; Fri, 16 May 2025 15:14:44 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2097140292; Fri, 16 May 2025 15:14:44 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 7140C4028F for ; Fri, 16 May 2025 15:14:43 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1213) id 5A003201DB03; Fri, 16 May 2025 06:14:42 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 5A003201DB03 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1747401282; bh=jV8aybsETpwwUZcf2IgTxVXcGh8as5RHHCobKlnS6Qw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=cJKzHH8scp1jsFbcl77ETxm95VXNuBSDiJytWD94G88pGxDtC8uXrrGsT03Tzo3jA X/lMsVge7ohBo1kScH9E/h4pWCj5S10eRtPpPLZVPqUHlxx2iwZZhyGg4kCFOSyDkq /volJh83KlywAo6YUs6mRlKz07NAro1rnIIwq7II= Date: Fri, 16 May 2025 06:14:42 -0700 From: Andre Muezerie To: David Marchand Cc: dev@dpdk.org, Dmitry Kozlyuk Subject: Re: [PATCH v3 1/1] buildtools: avoid break due to failure to cleanup temporary directory Message-ID: <20250516131442.GC29027@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1746474405-5056-1-git-send-email-andremue@linux.microsoft.com> <1746627671-28659-1-git-send-email-andremue@linux.microsoft.com> <1746627671-28659-2-git-send-email-andremue@linux.microsoft.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit 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 Fri, May 16, 2025 at 11:34:10AM +0200, David Marchand wrote: > Hello Andre, > > On Wed, May 7, 2025 at 4:21 PM Andre Muezerie > wrote: > > > > When compiling drivers on Windows, instances have been seen where a > > temporary directory fails to get cleaned up due to > > ERROR_SHARING_VIOLATION (32). > > > > This issue was not seen on operating systems other than Windows. > > > > This patch eliminates the use of tempfile.TemporaryDirectory, which > > was triggering the issue. > > > > Signed-off-by: Andre Muezerie > > How does this change interact (except a merge conflict) with the other > series that adds pmdinfo for MSVC? > https://patchwork.dpdk.org/project/dpdk/list/?series=35065&state=%2A&archive=both > I suggest applying this patch as early as possible. I can rebase the other patch which will merge conflict with it after if needed. On my dev machine I'm building the drivers folder, and that doesn't succeed without this patch. I want to enable that on the official branch as well, but can't until this patch is merged. > > -- > David Marchand