Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1440993
| From | Christoph Hellwig <hch@lst.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] kprobes: include <asm/sections.h> instead of <asm-generic/sections.h> |
| Date | 2016-07-12 03:00 +0200 |
| Message-ID | <rTUdj-63m-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
asm-generic headers are generic implementations for architecture specific code and should not be included by common code. Thus use the asm/ version of sections.h to get at the linker sections. Signed-off-by: Christoph Hellwig <hch@lst.de> --- kernel/kprobes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/kprobes.c b/kernel/kprobes.c index d10ab6b..d630954 100644 --- a/kernel/kprobes.c +++ b/kernel/kprobes.c @@ -49,7 +49,7 @@ #include <linux/cpu.h> #include <linux/jump_label.h> -#include <asm-generic/sections.h> +#include <asm/sections.h> #include <asm/cacheflush.h> #include <asm/errno.h> #include <asm/uaccess.h> -- 2.1.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] kprobes: include <asm/sections.h> instead of <asm-generic/sections.h> Christoph Hellwig <hch@lst.de> - 2016-07-12 03:00 +0200 Re: [PATCH] kprobes: include <asm/sections.h> instead of <asm-generic/sections.h> Masami Hiramatsu <mhiramat@kernel.org> - 2016-07-13 17:20 +0200
csiph-web