From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x736.google.com (mail-qk1-x736.google.com [IPv6:2607:f8b0:4864:20::736]) by sourceware.org (Postfix) with ESMTPS id 13A12385043C for ; Mon, 8 Feb 2021 20:44:28 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 13A12385043C Received: by mail-qk1-x736.google.com with SMTP id a19so15929887qka.2 for ; Mon, 08 Feb 2021 12:44:28 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=ebVa6WCFNsHuSMv0zGJ2bvwogLuwxBkM5fXVXMxEhMM=; b=EyoSfTVHUsQ28EUYbF5lsoHNg9r+kAPkJRjv+CtWbl9KE/TbsnUAP/M5HGO6TRQkyT b/Z3QTXEfAz6xoK3qhMCXiPDEuFgrUZG9vzq3gBMugFd84xHO33Akctr19TKmYFR5xfY Gsh3xp/K84JpG+ribBwcHDIORuR9aHJxTZAsjQX+NUc/TjowqJRRplj0PQjLbySmpq9m r3NOHixEAt8F9TNDFGrZSeYE2ZroLZFKDiFnZyU6GF24gDEOLBL8VHj+pmTDCxZH3+Bh 1gpxO6+CAWcZqAqanwrBJvdL4PVBdFijOq3DOmRSvAW6yjeVE5zPBcwwssoj69c0epBh i4aQ== X-Gm-Message-State: AOAM530qbkmojaOZJQES0m+HaZSu+LSDrEiawelEPLS+wQ3LUoafLP1g VjNzPrEinHKL2yGZSG9fA4Irmva2O1z/VA== X-Google-Smtp-Source: ABdhPJzAD0p2PignVLz8MF7tF+fta6j6ngCLO2f2EiYx3geIlZ3s/Ro681ayP8mtabtjYScLOGXGFQ== X-Received: by 2002:a37:dc43:: with SMTP id v64mr20307541qki.361.1612817067693; Mon, 08 Feb 2021 12:44:27 -0800 (PST) Received: from ?IPv6:2804:7f0:8080:8c83:1018:b18e:9d50:bc53? ([2804:7f0:8080:8c83:1018:b18e:9d50:bc53]) by smtp.gmail.com with ESMTPSA id t8sm16516780qkt.125.2021.02.08.12.44.25 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 08 Feb 2021 12:44:27 -0800 (PST) Subject: Re: [PATCH v5 24/25] Add NEWS entry. To: Simon Marchi , gdb-patches@sourceware.org References: <20210127202112.2485702-1-luis.machado@linaro.org> <20210127202112.2485702-25-luis.machado@linaro.org> <133eb559-cf96-931d-fb02-c5b34402a3c7@polymtl.ca> From: Luis Machado Message-ID: Date: Mon, 8 Feb 2021 17:44:22 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <133eb559-cf96-931d-fb02-c5b34402a3c7@polymtl.ca> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-12.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org 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: , X-List-Received-Date: Mon, 08 Feb 2021 20:44:29 -0000 On 2/5/21 2:06 AM, Simon Marchi wrote: > On 2021-01-27 3:21 p.m., Luis Machado via Gdb-patches wrote: >> Updates on v4: >> >> - Update command names. >> >> -- >> >> Mention the new packets and memory tagging features. >> >> gdb/ChangeLog: >> >> YYYY-MM-DD Luis Machado >> >> * NEWS: Mention memory tagging changes. >> --- >> gdb/NEWS | 36 ++++++++++++++++++++++++++++++++++-- >> 1 file changed, 34 insertions(+), 2 deletions(-) >> >> diff --git a/gdb/NEWS b/gdb/NEWS >> index d2ed28857b..a4e08491ee 100644 >> --- a/gdb/NEWS >> +++ b/gdb/NEWS >> @@ -3,6 +3,21 @@ >> >> *** Changes since GDB 10 >> >> +* GDB now supports general memory tagging functionality if the underlying >> + architecture supports the proper primitives and hooks. Currently this is >> + enabled only for AArch64 MTE. >> + >> + This includes: >> + >> + - Additional information when the inferior crashes with a SIGSEGV caused by >> + a memory tag violation. >> + >> + - A new modifier 'm' for the "x" command, which displays allocation tags for a >> + particular memory range. >> + >> + - Display of memory tag mismatches by "print", for addresses and >> + pointers, if memory tagging is supported by the architecture. > > You might also want to mention the options added by your previous patch, > about memory-tag-violations. Done now. Thanks!