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 76DA5C5AD4C for ; Wed, 15 Nov 2023 19:48:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235333AbjKOTs5 (ORCPT ); Wed, 15 Nov 2023 14:48:57 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60182 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235331AbjKOTs4 (ORCPT ); Wed, 15 Nov 2023 14:48:56 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6CB2F12C for ; Wed, 15 Nov 2023 11:48:52 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E3693C433C8; Wed, 15 Nov 2023 19:48:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1700077732; bh=PcYrztn+GnerQs1n8YJapL++P9j6o3LBnZ3K9rK2tkg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=P+kR6N986Emqablfp+D6+oGu34fRLgXubojvpdDMsEdQOgobcoUD7GMOTkxh1Lknf JNpQgX+qJ2wIkY/Muoef7AFtHRpbOOr8hHoKKBdHvlo8uKUXJDVKaQRa49oQysW+t7 +20nQ+yFElJzGVcIkBTZWOn+xVo8Z6djbTL8nyEY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, kernel test robot , Ian Rogers , oe-kbuild-all@lists.linux.dev, Namhyung Kim , Sasha Levin Subject: [PATCH 6.6 467/603] perf tools: Do not ignore the default vmlinux.h Date: Wed, 15 Nov 2023 14:16:52 -0500 Message-ID: <20231115191644.856202067@linuxfoundation.org> X-Mailer: git-send-email 2.42.1 In-Reply-To: <20231115191613.097702445@linuxfoundation.org> References: <20231115191613.097702445@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Namhyung Kim [ Upstream commit 1f36b190ad2dea68e3a7e84b7b2f24ce8c4063ea ] The recent change made it possible to generate vmlinux.h from BTF and to ignore the file. But we also have a minimal vmlinux.h that will be used by default. It should not be ignored by GIT. Fixes: b7a2d774c9c5 ("perf build: Add ability to build with a generated vmlinux.h") Reported-by: kernel test robot Reviewed-by: Ian Rogers Closes: https://lore.kernel.org/oe-kbuild-all/202310110451.rvdUZJEY-lkp@intel.com/ Cc: oe-kbuild-all@lists.linux.dev Signed-off-by: Namhyung Kim Signed-off-by: Sasha Levin --- tools/perf/util/bpf_skel/vmlinux/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 tools/perf/util/bpf_skel/vmlinux/.gitignore diff --git a/tools/perf/util/bpf_skel/vmlinux/.gitignore b/tools/perf/util/bpf_skel/vmlinux/.gitignore new file mode 100644 index 0000000000000..49502c04183a2 --- /dev/null +++ b/tools/perf/util/bpf_skel/vmlinux/.gitignore @@ -0,0 +1 @@ +!vmlinux.h -- 2.42.0