From 12b3802db1ec12b1cdcd5244ecd4c8cc0bba6197 Mon Sep 17 00:00:00 2001 From: Aleksei Vetrov Date: Tue, 28 Feb 2023 12:49:12 +0000 Subject: [PATCH] Revert "ANDROID: GKI: skip btf_type_tag in genksyms" Changes to CRC due to updating pahole to v1.23 can be now be applied with a new KMI release. This reverts commit 26f2032cc476b6d61f4a694fca4feb8e9e2cb5c7. Bug: 269622287 Change-Id: Ied7dfaa5e77066e1e92159fbf58cca7436515eb3 Signed-off-by: Aleksei Vetrov --- include/linux/compiler_types.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/linux/compiler_types.h b/include/linux/compiler_types.h index 30f93f4f08a9..eb0466236661 100644 --- a/include/linux/compiler_types.h +++ b/include/linux/compiler_types.h @@ -7,13 +7,9 @@ /* * Skipped when running bindgen due to a libclang issue; * see https://github.com/rust-lang/rust-bindgen/issues/2244. - * - * Skipped when running genksyms due to breakage of CRC. - * Should be reverted on next KMI update. */ #if defined(CONFIG_DEBUG_INFO_BTF) && defined(CONFIG_PAHOLE_HAS_BTF_TAG) && \ - __has_attribute(btf_type_tag) && !defined(__BINDGEN__) && \ - !defined(__GENKSYMS__) + __has_attribute(btf_type_tag) && !defined(__BINDGEN__) # define BTF_TYPE_TAG(value) __attribute__((btf_type_tag(#value))) #else # define BTF_TYPE_TAG(value) /* nothing */