From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 32D073F20F0; Wed, 20 May 2026 16:56:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779296164; cv=none; b=bfRt292d6jjwUHaw/4Xh9bHzK2lHJ/7QiaEDaJBFuh4FVhzFAO8J2OCC+RQ4/SVVCjnxf/8kbbwkDdlURKWJuDYA/Tu5nAoQibjobo5nqjIOA2km7HzesI3kYluJUTzGsB6t+deOxsVjzaGW9XFFZVzhOqw5rCRQ0EWorVUcMiY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779296164; c=relaxed/simple; bh=Ossh9XSNJKRyQcYQoWgR6xXHnHQ4L0j1u91iqarSPAY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=cX2n1d1CK/8Z3undoY1l5caqspXo5jOy0Sk8xf+fVgU5mqsKeQfzS4Pvquebbm1CX+tL0xn97aDMGSQsMRajqH+9MRpdL5NZ1iLFo96WmXTzTkh0rKNIF90cnCpMu8pIxuB3gb9+tJf864bpS9F8Woagyw2RmASEUpJtEnqMxY8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=0PCo8xa+; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="0PCo8xa+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 96D0E1F000E9; Wed, 20 May 2026 16:56:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779296163; bh=/ISppEt1hyd7zGPi8pYb/Ih5FciaJwLBmeKGqPcOdDs=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=0PCo8xa++9omXgmMugHVncVBWljYXy3G1wCJDoiIBhZsKS2HBtTj4BR/NYs/03kxD l10PcWFKeYsxHgi0F7Ony8rVtVtbrJgi/BcwI94FdF3Yuu4+74V1NxmVTCnOELyS6l QrAm5b3bmWOdZN9zersKJyDYAzV/PG05TtTqyeGI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ian Rogers , Arnaldo Carvalho de Melo , Namhyung Kim , Sasha Levin Subject: [PATCH 7.0 0655/1146] perf util: Kill die() prototype, dead for a long time Date: Wed, 20 May 2026 18:15:05 +0200 Message-ID: <20260520162203.006331776@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162148.390695140@linuxfoundation.org> References: <20260520162148.390695140@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 7.0-stable review patch. If anyone has any objections, please let me know. ------------------ From: Arnaldo Carvalho de Melo [ Upstream commit e5cce1b9c82fbd48e2f1f7a25a9fad8ee228176f ] In fef2a735167a827a ("perf tools: Kill die()") the die() function was removed, but not the prototype in util.h, now when building with LIBPERL=1, during a 'make -C tools/perf build-test' routine test, it is failing as perl likes die() calls and then this clashes with this remnant, remove it. Fixes: fef2a735167a827a ("perf tools: Kill die()") Reviewed-by: Ian Rogers Signed-off-by: Arnaldo Carvalho de Melo Signed-off-by: Namhyung Kim Signed-off-by: Sasha Levin --- tools/perf/util/util.h | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/perf/util/util.h b/tools/perf/util/util.h index 394dbfa944ac7..e935438451b81 100644 --- a/tools/perf/util/util.h +++ b/tools/perf/util/util.h @@ -30,7 +30,6 @@ extern bool perf_guest; /* General helper functions */ void usage(const char *err) __noreturn; -void die(const char *err, ...) __noreturn __printf(1, 2); struct dirent; struct strlist; -- 2.53.0