From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id A8E9438650D0 for ; Thu, 18 May 2023 21:01:07 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org A8E9438650D0 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=simark.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=simark.ca Received: from [10.0.0.170] (unknown [167.248.160.41]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 3A2F01E0D4; Thu, 18 May 2023 17:01:07 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=simark.ca; s=mail; t=1684443667; bh=N9awwr/ADtk/qenmH485addQEX2dGqmzQfVRRKhbTAc=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=Wf23XflR3+rI84bYaa0gqySXpsBBQAh7MbtmJQzkXXa7T9b6piva+ZgwL8mrNDdxt qS5sNy6qpatTaKcKmAA32VqdaBbNfPFrNuyBTxIfhdrwyIIX+l5aYgz696wJ6t+fgJ 2bjSOi6VI98D4HR1nuOiJ5FlnS4jmmL77EP/8ZBc= Message-ID: <112faeb7-3f03-af6e-562e-5a75d47873b3@simark.ca> Date: Thu, 18 May 2023 17:01:06 -0400 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0 Subject: Re: [PATCH 00/12] Use intrusive_list for breakpoints and breakpoint locations Content-Language: fr To: Andrew Burgess , Simon Marchi via Gdb-patches Cc: Simon Marchi References: <20230511144832.17974-1-simon.marchi@efficios.com> <874jo9ab42.fsf@redhat.com> From: Simon Marchi In-Reply-To: <874jo9ab42.fsf@redhat.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NICE_REPLY_A,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE 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: On 5/18/23 11:54, Andrew Burgess via Gdb-patches wrote: > Simon Marchi via Gdb-patches writes: > >> This series changes two linked lists to use intrusive_list. There are >> some cleanups before that, and some small fixes that needed to be made >> to some of our iterator wrappers. > > I took a look through and left a few comments, but otherwise, this looks > great. > > I also ran the testsuite locally, and saw no regressions. > > Reviewed-By: Andrew Burgess Thanks for reviewing. Since the adjustments were mostly trivial, I will push the modified version of this series once the checked_static_cast for references patches (or an equivalent) is in. Simon