From: Kirill Tkhai Date: Wed, 23 Oct 2013 13:08:44 +0000 (+0200) Subject: scripts/tags.sh: Increase identifier list X-Git-Tag: v4.13~8396^2~4 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=f5a82137a53f4dbb61a1739c750c7cc22a4983e9;p=mirror_ubuntu-bionic-kernel.git scripts/tags.sh: Increase identifier list Add __maybe_unused __always_unused __cacheline_aligned __cacheline_aligned_in_smp ACPI_EXPORT_SYMBOL to the list. Signed-off-by: Kirill Tkhai Signed-off-by: Andrew Morton Signed-off-by: Michal Marek --- diff --git a/scripts/tags.sh b/scripts/tags.sh index 74f02e4dddd2..f1bcfc11cc72 100755 --- a/scripts/tags.sh +++ b/scripts/tags.sh @@ -151,13 +151,14 @@ exuberant() all_target_sources | xargs $1 -a \ -I __initdata,__exitdata,__initconst,__devinitdata \ -I __devinitconst,__cpuinitdata,__initdata_memblock \ - -I __refdata,__attribute \ + -I __refdata,__attribute,__maybe_unused,__always_unused \ -I __acquires,__releases,__deprecated \ -I __read_mostly,__aligned,____cacheline_aligned \ -I ____cacheline_aligned_in_smp \ + -I __cacheline_aligned,__cacheline_aligned_in_smp \ -I ____cacheline_internodealigned_in_smp \ -I __used,__packed,__packed2__,__must_check,__must_hold \ - -I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \ + -I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL,ACPI_EXPORT_SYMBOL \ -I DEFINE_TRACE,EXPORT_TRACEPOINT_SYMBOL,EXPORT_TRACEPOINT_SYMBOL_GPL \ -I static,const \ --extra=+f --c-kinds=+px \