From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id A67673858D35 for ; Thu, 13 Apr 2023 13:12:32 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org A67673858D35 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pmwkZ-0002R5-Tm; Thu, 13 Apr 2023 09:12:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=In-Reply-To:MIME-Version:References:Subject:To:From: Date; bh=loAi2G+ELsUQ8c/4zLNA8NAyd1zRgKjfaQjb9i5Gn5I=; b=Kh8Ye1x3R07gX8P9YzM+ C1S/NtNpcthRNuW1TwaKGQ+vpnxp8cI1g9CxD3DstJwXsZ+9qAuGWJnD2KFYbTfxeS3698yZY2m8P Rvxu6m6yjIDGPCJd1U9NKmc55hiiV26i9TYd6MxJR7pQ+IVnvpkaXfYbyOfYnNRDRnOeJr6J2X1AU KQHy+Oaa/Hib34chZo7/vlZNiOBx1mu7cG9MtHJHzYBWV2E0ZE9fhaFq9EXoDAI11BpYqrrKEaEga T+3i3AoQMN5PUcEcsznxk7MhqD0PPR7fPOMFP3R5oaBS9aLSnTcuJVDtGIaV6/6x1wf6dCv1VYU6w hhpN+4qDLp9+QA==; Received: from nat-inria-interne-52-gw-01-bso.bordeaux.inria.fr ([194.199.1.52] helo=begin) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pmwkZ-00066v-7p; Thu, 13 Apr 2023 09:12:31 -0400 Received: from samy by begin with local (Exim 4.96) (envelope-from ) id 1pmwkV-002Lcy-2m; Thu, 13 Apr 2023 15:12:27 +0200 Date: Thu, 13 Apr 2023 15:12:27 +0200 From: Samuel Thibault To: Sergey Bugaev Cc: libc-alpha@sourceware.org, bug-hurd@gnu.org Subject: Re: [RFC PATCH glibc v2 26/34] hurd: Remove __hurd_local_reply_port Message-ID: <20230413131227.oiotppbcxrpwl7l2@begin> Mail-Followup-To: Sergey Bugaev , libc-alpha@sourceware.org, bug-hurd@gnu.org References: <20230411201845.oias7lryrvm3cck7@begin> <20230413115812.267158-1-bugaevc@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230413115812.267158-1-bugaevc@gmail.com> Organization: I am not organized User-Agent: NeoMutt/20170609 (1.8.3) X-Spam-Status: No, score=-6.0 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Sergey Bugaev, le jeu. 13 avril 2023 14:58:12 +0300, a ecrit: > NOTE: Completely untested! Do your own testing! You have been warned! Doesn't work :) (gdb) bt #0 0x08000db3 in abort () at ../sysdeps/mach/hurd/dl-sysdep.c:753 #1 0x0802328a in __mig_dealloc_reply_port (arg=) at ../sysdeps/mach/hurd/mig-reply.c:91 #2 0x08019d67 in _dl_sysdep_start_cleanup () at ../sysdeps/mach/hurd/dl-sysdep.c:241 #3 0x0801dcb6 in dl_main (phdr=, phnum=, user_entry=, auxv=) at rtld.c:2387 #4 0x0801ad9d in go (argdata=0x1001d40) at ../sysdeps/mach/hurd/dl-sysdep.c:172 #5 0x08020733 in _hurd_startup (argptr=, main=) at hurdstartup.c:184 #6 0x0801ac05 in _dl_sysdep_start (start_argptr=0x1002000, dl_main=0x801c530 ) at ../sysdeps/mach/hurd/dl-sysdep.c:229 #7 0x0801c285 in _dl_start_final (arg=) at rtld.c:495 #8 _dl_start (arg=) at rtld.c:582 #9 0x0801b2cb in _start () from /usr/src/glibc-upstream/build/elf/ld.so.1 (gdb) up #1 0x0802328a in __mig_dealloc_reply_port (arg=) at ../sysdeps/mach/hurd/mig-reply.c:91 91 assert (port == arg); (gdb) up #2 0x08019d67 in _dl_sysdep_start_cleanup () at ../sysdeps/mach/hurd/dl-sysdep.c:241 241 __mig_dealloc_reply_port (MACH_PORT_NULL); Samuel