From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9C58EC4332F for ; Tue, 20 Dec 2022 18:31:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229757AbiLTSb4 (ORCPT ); Tue, 20 Dec 2022 13:31:56 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59026 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234012AbiLTSb2 (ORCPT ); Tue, 20 Dec 2022 13:31:28 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 07A111DDE8; Tue, 20 Dec 2022 10:31:18 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 9893361545; Tue, 20 Dec 2022 18:31:17 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BC244C433D2; Tue, 20 Dec 2022 18:31:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1671561077; bh=wfmGCuyQlVuAtk9Pjs3AE2rADCytSf8FXTcgm3KCAN4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=lVKIDOgx0RzrxmyJ/0GRGeF6NplLGMY29uzAflPCGbrFEQNac9J/wPDpSmRxk6yo9 nZIzKbub8syX1uEmhMq7Dp5bcVmUbM7JxrIL3Gzu6DO5+M/YNb1z4iqBhs+l5Cj7h1 XN+YVXbLtdDcdrtcrle6IEsBbbvQRd/61v5uvO3CpTU/aRpkOrUE1zE/kJUVsQYqt6 XL48Bw7vpTE+CFrnm9fr6vgSl9bfeYyLHppjuPYyx0rpIpXjpoGKbgNTH4jN0Qfz7/ REl3d36dSDVvDkWxCU6eSJ6ML+mF5+k+EWlumx6Xxa07uVwVYK/3LVMEFCgmDx7rqN TH9Z87HzjS8kg== Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 819E140367; Tue, 20 Dec 2022 15:31:14 -0300 (-03) Date: Tue, 20 Dec 2022 15:31:14 -0300 From: Arnaldo Carvalho de Melo To: Leo Yan Cc: Changbin Du , Peter Zijlstra , Ingo Molnar , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org, Andrii Nakryiko Subject: Re: [PATCH] perf: makefile: add .DELETE_ON_ERROR special target Message-ID: References: <20221217225151.90387-1-changbin.du@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Url: http://acmel.wordpress.com Precedence: bulk List-ID: X-Mailing-List: linux-perf-users@vger.kernel.org Em Tue, Dec 20, 2022 at 09:57:57AM +0800, Leo Yan escreveu: > On Sun, Dec 18, 2022 at 06:51:51AM +0800, Changbin Du wrote: > > As kbuild, this adds .DELETE_ON_ERROR special target to clean up > > partially updated files on error. A known issue is the empty vmlinux.h > > generted by bpftool if it failed to dump btf info. > > > > Signed-off-by: Changbin Du > > Cc: Andrii Nakryiko > > Reviewed-by: Leo Yan Thanks, applied. - Arnaldo