From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 10ESMV8OQ2K4YAAAWB0awg (envelope-from ) for ; Tue, 29 Mar 2022 09:49:19 -0400 Received: by simark.ca (Postfix, from userid 112) id B6F671F0B6; Tue, 29 Mar 2022 09:49:19 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id B448A1E150 for ; Tue, 29 Mar 2022 09:49:15 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 4A491386549C for ; Tue, 29 Mar 2022 13:49:15 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4A491386549C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1648561755; bh=Wj0CCY8H4YvEwPD06fA0WgPEAHIOE0hptSWICvnXB/I=; h=Date:To:In-Reply-To:Subject:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=WByYmGSqiPFcc3Thikin3619zo+EK15AEauTJ9arMK2Zukhq2secwwA3IzZSkuzgO j2V0PAQB4+y01E8+dEb+tupdXGaAZi7vucKhVkRec70KIvKDYIIVbp2nDhzNgvvq/8 bIMFk3hLQ5ybhXHEvenUl8+C7AIusNhiOSMN17OE= Received: from eggs.gnu.org (eggs.gnu.org [209.51.188.92]) by sourceware.org (Postfix) with ESMTPS id BA1A73858C50 for ; Tue, 29 Mar 2022 13:48:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BA1A73858C50 Received: from [2001:470:142:3::e] (port=35978 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nZCDP-0007fL-BQ; Tue, 29 Mar 2022 09:48:55 -0400 Received: from [87.69.77.57] (port=3544 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nZCDK-0002Is-IM; Tue, 29 Mar 2022 09:48:55 -0400 Date: Tue, 29 Mar 2022 16:48:56 +0300 Message-Id: <83pmm498dz.fsf@gnu.org> To: Christina Schimpe In-Reply-To: <20220329131158.3970228-3-christina.schimpe@intel.com> (message from Christina Schimpe via Gdb-patches on Tue, 29 Mar 2022 15:11:57 +0200) Subject: Re: [PATCH v2 2/3] gdb: Add per-remote target variables for memory read and write config References: <20220329131158.3970228-1-christina.schimpe@intel.com> <20220329131158.3970228-3-christina.schimpe@intel.com> X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Eli Zaretskii via Gdb-patches Reply-To: Eli Zaretskii Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" > Date: Tue, 29 Mar 2022 15:11:57 +0200 > From: Christina Schimpe via Gdb-patches > > diff --git a/gdb/NEWS b/gdb/NEWS > index 7740162d3e..aa704d076d 100644 > --- a/gdb/NEWS > +++ b/gdb/NEWS > @@ -16,6 +16,18 @@ > the configuration of the currently selected target. If no remote target is > selected, the default configuration for future connections is shown. > > + The individual packet sizes can be configured and shown using the commands > + ** 'set remote memory-read-packet-size (number of bytes|fixed|limit)' > + ** 'set remote memory-write-packet-size (number of bytes|fixed|limit)' > + ** 'show remote memory-read-packet-size' > + ** 'show remote memory-write-packet-size'. > + > + The configuration of the packet itself, as well as the size of a memory-read > + or memory-write packet, applies to the currently selected target (if > + available) and future remote connections. The "show remote" commands print > + the configuration of the currently selected target. If no remote target is > + selected, the default configuration for future connections is shown. > + > * GDB now supports hardware watchpoints on FreeBSD/Aarch64. > > * Remove support for building against Python 2, it is now only possible to This part of the patch is OK. > +@cindex Configuration of the remote packet size Index entries should all begin with a lower-case letter, so that their sorting (when the Info manual is produced) is not affected by the current locale. The documentation parts of the patch are okay with the above not fixed. Thanks.