linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Nick Desaulniers <ndesaulniers@google.com>
To: miguel.ojeda.sandonis@gmail.com
Cc: sedat.dilek@gmail.com, will@kernel.org, jpoimboe@redhat.com,
	naveen.n.rao@linux.vnet.ibm.com, davem@davemloft.net,
	paul.burton@mips.com, clang-built-linux@googlegroups.com,
	linux-kernel@vger.kernel.org,
	Nick Desaulniers <ndesaulniers@google.com>
Subject: [PATCH v3 13/14] include/linux/compiler.h: remove unused KENTRY macro
Date: Wed, 28 Aug 2019 15:55:34 -0700	[thread overview]
Message-ID: <20190828225535.49592-14-ndesaulniers@google.com> (raw)
In-Reply-To: <20190828225535.49592-1-ndesaulniers@google.com>

This macro is not used throughout the kernel. Delete it rather than
update the __section to be a fully spelled out
__attribute__((__section__())) to avoid
https://bugs.llvm.org/show_bug.cgi?id=42950.

Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
---
 include/linux/compiler.h | 23 -----------------------
 1 file changed, 23 deletions(-)

diff --git a/include/linux/compiler.h b/include/linux/compiler.h
index 5e88e7e33abe..f01c1e527f85 100644
--- a/include/linux/compiler.h
+++ b/include/linux/compiler.h
@@ -136,29 +136,6 @@ void ftrace_likely_update(struct ftrace_likely_data *f, int val,
 } while (0)
 #endif
 
-/*
- * KENTRY - kernel entry point
- * This can be used to annotate symbols (functions or data) that are used
- * without their linker symbol being referenced explicitly. For example,
- * interrupt vector handlers, or functions in the kernel image that are found
- * programatically.
- *
- * Not required for symbols exported with EXPORT_SYMBOL, or initcalls. Those
- * are handled in their own way (with KEEP() in linker scripts).
- *
- * KENTRY can be avoided if the symbols in question are marked as KEEP() in the
- * linker script. For example an architecture could KEEP() its entire
- * boot/exception vector code rather than annotate each function and data.
- */
-#ifndef KENTRY
-# define KENTRY(sym)						\
-	extern typeof(sym) sym;					\
-	static const unsigned long __kentry_##sym		\
-	__used							\
-	__section("___kentry" "+" #sym )			\
-	= (unsigned long)&sym;
-#endif
-
 #ifndef RELOC_HIDE
 # define RELOC_HIDE(ptr, off)					\
   ({ unsigned long __ptr;					\
-- 
2.23.0.187.g17f5b7556c-goog


  parent reply	other threads:[~2019-08-28 22:56 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-28 22:55 [PATCH v3 00/14] treewide: prefer __section from compiler_attributes.h Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 01/14] s390/boot: fix section name escaping Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 02/14] include/linux/compiler.h: prefer __section from compiler_attributes.h Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 03/14] parisc: " Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 04/14] um: " Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 05/14] ia64: " Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 06/14] arm: " Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 07/14] mips: " Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 08/14] sparc: " Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 09/14] powerpc: prefer __section and __printf " Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 10/14] x86: prefer __section " Nick Desaulniers
2019-08-29 14:14   ` Miguel Ojeda
2019-08-29 14:22     ` Miguel Ojeda
2019-08-28 22:55 ` [PATCH v3 11/14] include/asm-generic: " Nick Desaulniers
2019-08-28 22:55 ` [PATCH v3 12/14] include/linux: " Nick Desaulniers
2019-08-28 22:55 ` Nick Desaulniers [this message]
2019-08-28 22:55 ` [PATCH v3 14/14] compiler_attributes.h: add note about __section Nick Desaulniers
2019-08-29 20:24 ` [PATCH v3 00/14] treewide: prefer __section from compiler_attributes.h Miguel Ojeda
2019-08-29 20:37   ` Sedat Dilek
2019-08-29 20:47     ` Nick Desaulniers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190828225535.49592-14-ndesaulniers@google.com \
    --to=ndesaulniers@google.com \
    --cc=clang-built-linux@googlegroups.com \
    --cc=davem@davemloft.net \
    --cc=jpoimboe@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=miguel.ojeda.sandonis@gmail.com \
    --cc=naveen.n.rao@linux.vnet.ibm.com \
    --cc=paul.burton@mips.com \
    --cc=sedat.dilek@gmail.com \
    --cc=will@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).