From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id F33531F55F; Fri, 1 Sep 2023 11:09:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1693566544; bh=t/TCfZHTiotIHrpaUtfVRKdkQz3XwR+gkejNjVCVv90=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Q7o1fj+ZRc6IghAQ5jIUXxolohqYjk9vFywacDLn5bLTHATyQRJQsQGZUwG1keXqz Sya/zKE6YKOmfJlggcRyMKs8FDILApxc5Z2T+m9Tg2+zJeFkSKxBZe73Su1gXB4qnC I/7flZZyhdMDEYc24MfKUbcGUX4wo/XNatO7d1Lc= Date: Fri, 1 Sep 2023 11:09:03 +0000 From: Eric Wong To: =?utf-8?B?xaB0xJtww6FuIE7Em21lYw==?= Cc: meta@public-inbox.org Subject: Re: [PATCH 0/7] various build fixes + OpenBSD compat, [PATCH 7/7] xap_helper.h: fix double-free on OpenBSD hdestroy Message-ID: <20230901110903.M876537@dcvr> References: <20230830051045.330641-1-e@80x24.org> <20230830051045.330641-1-e@80x24.org> <20230830143409+0200.929541-stepnem@smrk.net> <20230830211849.M275594@dcvr> <20230831111152+0200.360729-stepnem@smrk.net> <20230831192650+0200.929387-stepnem@smrk.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20230831192650+0200.929387-stepnem@smrk.net> List-Id: Štěpán Němec wrote: > On Thu, 31 Aug 2023 11:11:52 +0200 > Štěpán Němec wrote: > > On Wed, 30 Aug 2023 21:18:49 +0000 > > Eric Wong wrote: > > > >> What's lei-import-http.t stuck on? I haven't seen that... > > > > Have you tried without p5-Inline? I installed it now and the test passes. > > Ah, I see now that PERFORMANCE NOTES in lei-overview.pod says Inline::C > is required, so perhaps just some adjustments to the test > skipping/diagnostics and INSTALL instructions (which say Inline::C is > optional) would be helpful? Actually, Inline::C is only needed for lei on *BSDs nowadays. Common/available-on-cfarm Linux arches can rely on stable syscall numbers to do FD passing. The problems with the lei tests w/o Inline::C on *BSD is trying to skip them too fast is more likely to trigger a race with EVFILT_SIGNAL (but not Linux signalfd). Still working on patches to fix it and other subtle things around signal handling...