From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.polymtl.ca (smtp.polymtl.ca [132.207.4.11]) by sourceware.org (Postfix) with ESMTPS id 17AF33858D28 for ; Thu, 5 Jan 2023 20:17:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 17AF33858D28 Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=polymtl.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=polymtl.ca Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 305KHN3E017819 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 5 Jan 2023 15:17:28 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 305KHN3E017819 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=polymtl.ca; s=default; t=1672949849; bh=QfSf4nvccYvRFPC2yyFYcwZ4DKOZ3uHr8uYiQTe6gnM=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=iWUBLKSwahOjQawQQH4QR6WDJinwV9wkwnBLTgdJ9/E9qHniS8nfSojctmY8MLD8R tulT3VA5WvLZSWH4VwKuuINmnNlnV+CLmzPNqLJhQVo983F/BkEDzKeHE45LQYNrql +ZhCu7iyANv1Ij8kiQZNXh34nD3VR/9vpZQ7n1Rk= Received: from [192.168.255.180] (unknown [207.35.41.250]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 602061E112; Thu, 5 Jan 2023 15:17:23 -0500 (EST) Message-ID: <954a0f17-61a5-aa1b-982a-1523f9ae8961@polymtl.ca> Date: Thu, 5 Jan 2023 15:17:27 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [PATCH v2 8/8] gdb: initial support for ROCm platform (AMDGPU) debugging Content-Language: fr To: gdb-patches@sourceware.org Cc: Zoran Zaric , Laurent Morichetti , Tony Tye , Lancelot SIX , Pedro Alves References: <20230105200237.987771-1-simon.marchi@polymtl.ca> <20230105200237.987771-9-simon.marchi@polymtl.ca> From: Simon Marchi In-Reply-To: <20230105200237.987771-9-simon.marchi@polymtl.ca> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Thu, 5 Jan 2023 20:17:23 +0000 X-Spam-Status: No, score=-3033.6 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NICE_REPLY_A,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,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: When trying to git-am this patch, I saw: Applying: gdb: initial support for ROCm platform (AMDGPU) debugging .git/rebase-apply/patch:512: indent with spaces. continue. */ .git/rebase-apply/patch:790: indent with spaces. indicate that the process has exited. GDB treats resuming a .git/rebase-apply/patch:1093: indent with spaces. sizeof (pid), &pid); .git/rebase-apply/patch:1377: indent with spaces. || ws->kind () == TARGET_WAITKIND_SIGNALLED) .git/rebase-apply/patch:1379: indent with spaces. /* This inferior has exited so drain its dbgapi event queue. */ warning: squelched 4 whitespace errors warning: 9 lines add whitespace errors. I fixed those issues locally. Simon